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?
", " (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.
Auto-complete other values
auto-completes previously entered values to encourage consistency and minimize typos.
SORT(
SPLIT(
Select(team[role],ISNOTBLANK([role]))
,",")
)
Hey @jballester It works, thanks.
User | Count |
---|---|
31 | |
13 | |
3 | |
3 | |
2 |