Slices Filter

Hello guys ! I'm using the Google translate for the question, ok ?

I'm trying to filter so the user doesn't see what when column [PINT.] and [PINT2.] are marked with "๐ŸŸฉP".

The only problem is that when I'm selecting the [PINT.] = "๐ŸŽจE" and [PINT2.] = "๐ŸŸฉP") the line disappears from the screen.

The expression that I'm used: 

OR([PINT.] = " ", [PINT2.] = " ")
OR([PINT.] = " ", [PINT2.] = ๐ŸŸฉP)
OR([PINT.] = ๐ŸŽจE, [PINT2.] = " ")
OR([PINT.] = ๐ŸŸฉP, [PINT2.] = " ")
OR([PINT.] = "๐ŸŽจE", [PINT2.] = "๐ŸŸฉP" )Print1.PNGPrint2.PNG

What am I doing wrong ?

Solved Solved
0 2 125
1 ACCEPTED SOLUTION

your expression is not built correctly;

Try this:

OR([PINT.] = "๐ŸŸฉP", [PINT2.] = "๐ŸŸฉP")

View solution in original post

2 REPLIES 2

your expression is not built correctly;

Try this:

OR([PINT.] = "๐ŸŸฉP", [PINT2.] = "๐ŸŸฉP")

Thanks friend, it worked here!

Top Labels in this Space