Hello all,
I would like to create a Flow when submitting a form it sends a message to a shared mailbox and look if the data is in the time range of 14 days. If it is true, it has to send a message to the responder.
Sending the message to a shared mailbox is working, but i cant get the 14 days working.

Currently i have:
- If form date is equal or greater then now and 14 days (formatDateTime(addDays(utcNow(),-14),'yyyy-MM-dd'))
- if form date is equal of less then now (formatDateTime(utcNow(),'yyyy-MM-dd'))
What i am doing wrong?