How to remove all the column evaluation_taste

3X_7_4_74fd9981669d2e570d48b2846194eae565de2cc5.png

0 8 118
8 REPLIES 8

Aurelien
Google Developer Expert
Google Developer Expert

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:

Top Labels in this Space