Hi @Audit_CKGoC
Here:
Picking a specific list will display only those picked.
Picking none will be similar to picking โAll Other Columnsโ
I want to remove All the comma in the column evaluation_taste rather.
OK.
I assume this column is an expression that results in a list.
If so, you may want to wrap the expression that provides this list, into a UNIQUE() expression.
For reference:
Can you confirm ?
yes youโre right. but the problem here is even though the column is blank, it still show a comma and we have a bot that only triggers when this column is empty.
OK, then try:
UNIQUE([yourPreviousExpression])-LIST("")
Youโre a beast. Thanks a lot
You are welcome
Note that list subtraction has the side-effect of removing duplicates, so the use of UNIQUE()
here is redundant. This will accomplish the same thing:
([yourPreviousExpression] - LIST(""))
See also:
User | Count |
---|---|
15 | |
12 | |
9 | |
8 | |
4 |