MULTIPLE ROW FILTER

HI all!
in a Column I have multiple values:
A, B, C, D,… Z.
As you can see I have to filter several values as Z, Y, X, V, J…etc

May I replace all “Row filter” with just 1 node with something like this: Exclude Z or Y or X...

All hints will be appreciated

SOLVED BY MYSELF :slight_smile:

Hope it helps

6 Likes

Hello @gcas
You can add all the rules with the ‘Rule Based Row Filter’ node

$Column$ LIKE "Z" => TRUE
$Column$ LIKE "Y" => TRUE
$Column$ LIKE "X" => TRUE
[...]
TRUE => FALSE

Exclude TRUES

BR

4 Likes

thanks! we both post the solution :slight_smile:

2 Likes

This can be done with the Nominal Value Row Filter as well. No need to write rules there
br

4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.