Copy data to seperate column, split() string by Space?

Hey there-

I’m trying to maintain column “Location” as is, and create 2 virtual columns.

Right now data auto-populates in Location as “200B 2A”
I’m trying to use the Split() function to separate that into a 200B column and a 2a column without affecting the source column.

Does anyone have any tips?

**Quick Tip: Ensure your new virtual columns are added to your slices.

Solved Solved
0 9 980
1 ACCEPTED SOLUTION

@logan_juern
Provided you have that extra 2 columns in your gSheet back-end, you can below expressions in the AppFormula property of those columns:

IFS(ISNOTBLANK([Location]),INDEX(SPLIT([Location]," "),1))

IFS(ISNOTBLANK([Location]),INDEX(SPLIT([Location]," "),2))

View solution in original post

9 REPLIES 9
Top Labels in this Space