I am trying to combine these two expressions for a Trigger Condition. I verified that both work individually, but cannot seem to get them both to work together as an And statement.
@equals(triggerBody()?['Status']?['Value'],'ABC'
@lessOrEquals(ticks(triggerBody()?['DateColumn']),ticks(utcNow())
I guess I didn't realize that I can combine two expressions by clicking Add a second time. That fixed my issue.
So what you said worked in the Flow checker, but when I went to save it I received an error. at line '1' and column '1161' is not valid template language
Hi @send2mark
Try the below
and(equals(triggerBody()?['Status']?['Value'],'ABC'),lessOrEquals(ticks(triggerBody()?['DateColumn']),ticks(utcNow())))
Thanks