Debraj
Excel Ninja
Hi EXCELians,
In Cell A1 'A549_CL130497_SAM602138_Batch100_Plate_5_H4'
In VBA > UDF
[pre]
(Ctrl+Shift+Enter)
Question:
Do we have any predefined formula in Excel corresponding to
Split or TextToColumn..
or to separate a Text in Column/Row..
In Cell A1 'A549_CL130497_SAM602138_Batch100_Plate_5_H4'
In VBA > UDF
[pre]
Code:
Function TextToColumn(Text As String, Separator As String)
TextToColumn = Split(Text, Separator)
End Function[/pre]
In Cell A3 to G3 formula {=TextToColumn(A1,"_")}
Question:
Do we have any predefined formula in Excel corresponding to
Split or TextToColumn..
or to separate a Text in Column/Row..