[Bug] Filtering conditions behaving randomly — critical issue before app delivery

For the past week, the variable filtering system has been completely inconsistent. Sometimes it works, sometimes it doesn’t — with no clear reason why.
For example, when I try to filter a value by simply checking if it equals zero, it just fails. Or worse, it works randomly — sometimes it passes the condition, sometimes not.

This makes me seriously concerned about delivering my app on Tuesday and ensuring it’s 100% functional.

It’s Wednesday! Hoping everything is well.

Yeah, the conditional filtering in Adalo can be a little flaky at times, especially when comparing against numbers like 0 or blank values. A couple of things you can try:

  1. Make sure the field type in your database is Number (not Text), since Adalo can treat “0” (string) differently from 0 (number).
  2. Sometimes conditions misfire if the field is null/empty/ adding an extra check like “is not empty” before your equals 0 condition can stabilize it.