SPLIT

SPLIT([Tags], ',')

Syntax

SPLIT(text field, separator)

Text function which returns the array of text values by splitting text field with defined delimiter.

field: Any existed data field within income data set.

For example we have the data set below

#Names
1Andrew, Mark, Ann
2John, Alex
3Adrian

Applying SPLIT([Names], ',') will give the table below

#SPLIT([Names], ',')
1Andrew
1Mark
1Ann
2John
2Alex
3Adrian