Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In a text object, is there a way to trim anything that comes after a comma? It's not a set number of spaces but varies based on the selection. My text object has current selections (=GetFieldSelections([Field Name]) but when I have two selections, it shows both separated by a comma. I just want to show the first one. Thanks in advance for your help.
Try:
=subfield(GetFieldSelections([FieldName]), ',', 1)
Hope this helps!
Try:
=subfield(GetFieldSelections([FieldName]), ',', 1)
Hope this helps!
Perfect. Thanks!