I have a date ReturnDate which is a date column in SP.
I need a flow to send an email 3 days before this date.
I've tried:
Send Email 3 days before due date - Power Platform Community (microsoft.com)
ReturnDate eq '@{formatDateTime(addDays(utcNow(),7),'yyyy-MM-dd')}'
This doesn't work as it says syntax is incorrect.
and this:
ReturnDate eq addDays(utcNow(), 3)
this doesn't work as it says syntax is incorrect also.
Help please!?