User Created Group of Rows based on Matching Keywords/Tags

I have a number of Items in a table with an EnumList column of user generated keywords or tags.
These come across as a comma delimited text string.

I would like to allow the user to create a “group” of items by selecting existing keywords from the Items table.

Any suggestions

Thanks all

Solved Solved
1 1 254
1 ACCEPTED SOLUTION

Update:

I think I found my solution
I set my TagFilter column to EnumList and used this expression in the formula field.

FILTER(Collection, (COUNT(INTERSECT([TagFilter], [Tags])) > 0 ) )

So now I can create a group based on available tags in my Items table.

View solution in original post

1 REPLY 1

Update:

I think I found my solution
I set my TagFilter column to EnumList and used this expression in the formula field.

FILTER(Collection, (COUNT(INTERSECT([TagFilter], [Tags])) > 0 ) )

So now I can create a group based on available tags in my Items table.

Top Labels in this Space