I thought you will love this one. It’s that type of “Help! My Flow hasn’t get triggered” thing which we all love.
How to reproduce
For the CDS entity which has some existing records then a new optionset field has got created. As a result some records may not have this field populated.
If you use Filter expression “[your_attribute] ne [some_value]” it won’t trigger for records where this attribute is equal to null.
For example, I’ve got a list of Jobs with the Type field populated for some records. Now I want to run a Flow which creates a Task every time I update a record if Job Type doesn’t equal to “Repair”

This is my Flow trigger and I am trying to run my Flow only for records which aren’t “Repair” type.


The selected job Type is not equal to “Repair” so expect Flow to trigger on the change of the record. But it doesn’t. My previous job run is for the Type populated.

Let’s create a new record with the type not “Repair”.

Then we update the Description.


The Flow was successfully triggered.

What’s the cause
I believe (I might be wrong though) that “null” means it’s not there. So you can’t really check if it matches the condition because it is physically not present in the dataset. If you look at JSON you for attribute which is “null” it’s not present in the JSON and marked as “null” it’s simply not there.
What’s the solution
There is none. Kidding. If you run for data with nulls and you want it to be triggered don’t use Filter expression. For this case you have to use a Condition action inside your Flow. It can be the first step in the Flow.
Happy days!
2 thoughts on “CDS current connector: Filter expression. My Flow doesn’t trigger!””