
Announcements
I have a flow that I would like to when an itme is modified, check to see if a column value does not contain a value, and runs a condition. I keep getting this error however.
The first condtion that is failing is:
The column in question is a text based column.
Any help is appreciated.
Hi , @jamescosten
This error code means that your [Completed] column return null from your trigger.
You can use this expression in your left of the condition:
if( equals( triggerOutputs()?['body/Completed'] , null) , string('') , triggerOutputs()?['body/Completed'] )
If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance!
Best Regards,
Yueyun Zhang