write expression for decision making

1
if approved date greater than 8/06/2023 return true
asked
1 answers
1

Hi there,

 

Not sure if this is what you want:

if $ObjectName/ApprovedDate > parseDateTimeUTC('08/06/2023', 'dd/MM/y') then true
else false

 

Which can be be formatted into a decision activity in a microflow: 

 

Hope this helps,

Liam

 

answered