I have a condition:
If Due Date is not equal to null it should go to the false path, but goes to the true path, when I look at the row of data the Due Date is blank, is there another test instead of checking for not equal to null to fix this ?
I think I might see the issue, it thinks Start Date is always empty, even when there is data..I need to figure out if it is the name of the column, etc
It is on the "Check if Start Date is not null"
Hi @PowerTony ,
Thanks for sharing your expression. The loop I see in your previous post is a different apply to each.
Here is the expression:
Hi @PowerTony ,
This empty expression should work so it must be something else. Can you please share your expression and the output of the list item? Either the expression may be incorrect or the field is empty.
I have a start date of 1/17/2024 and the following logic:
However it is hitting the false logic and not the true logic..I am wondering if I can use some sort of logic to look at the length of the field ?
Hi @PowerTony ,
I use the conditional action like this example:
The left side is an expression:
empty(dynamic_start_date_content)
is not equal to
expression: true
Then I put the actions I want to do on the true side if the start date is not empty.
How would I write that ? (using a start date as well to check that seperately)
as I have currently:
Hi @PowerTony ,
I will typically use the empty expression first
empty(Due_Date_dynamic_content)
is not equal to
expression true
Let me know if that helps!