Hi i am having data in excel sheet following format.. i want to split into two columns can you help me
Column
C232 Incubes ltd
C534 Gnet LT
Broadband,inc.
Out put should be in following format
column1 column2
C232 Incubes ltd
C534 Gnet LT
Broadband,inc.
I have used text to column + formula tool in order to make it work.
The output:
Please mark my post as a solution if this was helpful!
Thanks Emll_Kos, i split the column into column1 and column2 using Test to column ,but in formula column how to combine .. i am new user.
using test to column i am getting below
column column1 column2
C232 Incubes ltd C232 Incubes ltd
C534 Gnet Lt C534 Gnet Lt
Boradband,inc. Boradband, inc.
It is not working i am not getting expected i am here attached what i tried please correct me if i did anything wrong
Hi @yashavantharaja_thim — Try this solution:
FindString([Column], " ") function will identify the 1st position of the Space:
Left([Column], FindString([Column], " "))
IF FindString([Column], " ") < 1 THEN
Null()
ELSE
Trim(Right([Column], Length([Column])-FindString([Column], " ")))
ENDIF
It looks as though you may want to use REGEX to parse your data into the columns since you seem to have a customerID that appears from time to time but not always?
If you do a REGEX on your data, choose method PARSE and use the following REGEX pattern code:
^(C\d{3})?\s?(.*)$
Does that do the trick? Are there more variants in your data that this doesn’t account for?
REGEXing has become a hobby of mine so let me know!
If this helps, don’t forget to mark it as a solution.