Double condition on Show_if

I would to show a column if there is the value "Italy" in the column "Country" but If there is the value "Green" in the Column "Color", I would hide it.

How could I proceed?

Regards

Solved Solved
0 3 75
1 ACCEPTED SOLUTION

Maybe this  as show_if expression

AND([Country]="Italy", [Color]<>"Green")

View solution in original post

3 REPLIES 3

Maybe this  as show_if expression

AND([Country]="Italy", [Color]<>"Green")

Hello, thanks for your reply,
and if I have multiple colors?

So avoid to show the column if there is the value "Green" or "Red" or "White" in the column "Color"?

Solved with
AND([Country]="Italy", [Color]<>"Green", [Color]<>"Red", [Color]<>"White")

Top Labels in this Space