I am trying to set up a flow based off a date formatted column in a SharePoint list. I want the flow to review the date field, and if the current date is 45 days after that date field, send an email.
Flow set up:
1. Recurrence (Set to run every morning)
2. Get Items (To Search and filter SharePoint list items to query items from a specific category, requiring reminders after 45 days of column date)
3. For Each
4. Condition:
If Dynamic Date Field is equal to formatDateTime(utcNow(),-45, 'dd-MM-yyyy')
5. If True, send email.
6. If False, do nothing.
Flow works until it hits the condition, and always returns a false result, even though I have one entry that would prove true. When reviewing the test under condition, there is a warning that state: The expression contains dynamic functions, variables or parameters that cannot be resolved in the debugger.
I'm sure I am formatting the condition statement incorrectly, I just do not know how to fix this.