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.] = " :artist_palette: 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.] = :artist_palette: E, [PINT2.] = " ")
OR([PINT.] = ?P, [PINT2.] = " “)
OR([PINT.] = " :artist_palette: E”, [PINT2.] = “?P” )

What am I doing wrong ?

your expression is not built correctly;

Try this:

OR([PINT.] = "?P", [PINT2.] = "?P")
2 Likes

Thanks friend, it worked here!

1 Like