Hi!
My memory is not good enough 😅
'Is equal to' operator is the one I was trying to suggest.
Is it working now?
Please also note you can simplify your original Condition action block (the one inside the 'Apply to each'). Your left term looks like
equals(formatDateTime(item()?['9001_x0020_Expiry_x0020_Date'], 'MM/dd/yyyy'), formatDateTime(addDays(utcNow(), 14), 'MM/dd/yyyy'))
...so I guess you are using 'is equal to' operator, and also added expression true / false as the right term, right?
If so you can just apply the following expression to the left...
formatDateTime(item()?['9001_x0020_Expiry_x0020_Date'], 'MM/dd/yyyy')
...apply the following expression to the right...
formatDateTime(addDays(utcNow(), 14), 'MM/dd/yyyy')
...operator 'is equal to' / 'is not equal to' (depending on which boolean you are currently comparing with: true / false).
Hope this helps