Hello! Among my data I have records with four possible values in the column Class ('Inactive', 'Proc Manage', 'non-Proc Manage' and '-'). The last option occurs when there is no value for the record inside Class column.
Although without filtering I can see records with all values of Class listed above, trying to filter as in the picture, I can't get them (I receive only Inactive ones, my goal is to get empty ones also). If I want to get for example only those where Class = 'Inactive', it's easy, but what about the requirement to filter only records with no value for Class column? I don't know how to do it in a table, and inside Action Flows filtering as well. My intuitive code inside Action Flow is
FILTER "MyTable"."CLASS" IS NULL
, but unfortunately, there is no result. Do you have any idea how to solve this issue? I will be grateful for your support.
... and it works! However, this is not an optimal solution because without filtering inside the Query Data module, I'm collecting much more records than I would like to collect (it significantly impacts Action Flow performance). Do you think it's possible to solve it without the workaround I presented?