
Announcements
Hi,
I have a sample SP List column/field named "Approver", "Approver_Status" & "Date_of_Approval". I
update these fields in my initial approval flow based on Responses approval from the approval flow dynamic result.
Now, question is how to setup trigger condition for my another workflow wherein if Date_of_Approval has value (which basically dynamic value), the workflow will run? Or lets just say if Date_of_Approval is not null.
here's my sample but its not working..
@not(empty(triggerBody()?['Date_of_Approval']))
Thanks in advance! 🙂
Hi @jaina
Could you try with the following expression?:
@not(equals(triggerBody()?['Date_Of_Approval'],null))
Hope it helps!
Ferran