Is sit possible to put multiple IF conditions in Filter?
For example my data is like below;
Name Amount
AAA1 100
AAA2 0
BBB1 100
BBB2 0
and the result should be;
Name Amount
AAA1 100
AAA2 0
BBB1 100
When my name starts with BBB, the value should be greater than 0. In short, 0 is not allowed for BBB only but allowed for others.