Display Pipe Separated Values

rwksys
New Member

I have a pipe separated set of values that are essentially tags or attributes of the row. Is there a good way to:

  1. Display them so they appear as individual items and not pipe separated

  2. Have them actually work as tags where, selecting one would behave as a link to other rows that contain that tag (text).

Example value:

Dog Friendly|For Sale: Cans|For Sale: Clothing|Lancaster|Outdoor Seating|South of Charlotte

I was playing with enum list as a possible solution, but it appears these may be limited to comma separated values.

Solved Solved
0 1 278
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

SUBSTITUTE([Item_List], "|", "
")

Note that the expression itself is two lines . Thatโ€™s critical!

Note, too, that the formatted lines must be in a LongText column. A Text column will collapse multiple lines into one.

View solution in original post

1 REPLY 1

Steve
Platinum 4
Platinum 4

Try:

SUBSTITUTE([Item_List], "|", "
")

Note that the expression itself is two lines . Thatโ€™s critical!

Note, too, that the formatted lines must be in a LongText column. A Text column will collapse multiple lines into one.

Top Labels in this Space