extract unique data from an enum list

I’m using this formula in the suggested field to generate a unique list from the role column (enum list type). However, it’s still not completely unique, as it keeps suggesting duplicate values. is there something wrong with the formula I am using?

Screenshot 2024-09-17 154845.png

Screenshot 2024-09-17 155012.png

0 6 229
6 REPLIES 6

@alhazen , try

…( UNIQUE(…) - [_THIS] )…. \\\Or list([_this])

may be it will right.

Steve
Platinum 5
Platinum 5

", " (comma-space) should be " , " (space-comma-space).

SELECT(team[role], TRUE) could be replaced with just team[role].

The use of SPLIT() seems to serve no purpose in your expression. You could just use UNIQUE(team[role]) as the entirety of the expression.

Hey, @Steve The result isn't what I expected. it should be a unique and properly parsed dropdown list.

Screenshot 2024-09-18 083630.png

Auto-complete other values
auto-completes previously entered values to encourage consistency and minimize typos.

enumlist.png

 

 

Hey @jballester It works, thanks.

Screenshot 2024-09-18 091204.png

Top Labels in this Space