WAIT: Conditions will not work if 0

Hey @parsec ,
Have you tried it using the 1.10 beta? It might work, but the report is about a text field and not a checkbox:

Even if 0 is stored in the database, PHP interprets the 0 as false and returns nothing (contrary to true/1).

If the condition should only apply to true, i.e. 1, compare against 1 instead of 0 (== 1).

1 Like