I am attempting to take the contents of three text fields add the contents of them and place in a computed field.The contents of the three individual fields are “categories” and there can be multiple categories in each field. I want to combine categories from all three fields into one field, separated by commas into the 4th computed field. Then I want to have a view with the 4th field as the first column, categorized and sorted by all individual categories
My formula (after several attempts) is simply:
field1+", “+field2+”, "+field3
Field1 contains (abbreviated) A,B
Field2 contains C,D,E
Field3 contains F,G
The result in the computed field4 is:
A,C,F
B,D,G
B,E,G
And the categorized view appears as:
A,C,F
B,D,G
B,E,G
X
Y
Z …
The result I am looking for is for Field4 to compute to:
A,B,C,D,E,F,G
and the view to appear as:
A
B
C
D
E
F
G
…
X
Y
Z
Help is greatly appreciated!