
Announcements
I'm working on a flow that is supposed to Get Items from a SharePoint list and send an email for each item where a date in the column NewDateReported equals today's date.
I've verified that the output format of the NewDateReported column is 'yyyy-MM-dd' by running the flow without the condition and looking at the output. However, when I run the flow the "send email' action is not triggered, even though there are two items on the list that match today's date. The error message I receive says "ActionBranchingConditionNotSatisfied. The execution of template action 'Send_email_with_options' skipped: the branching condition for this action is not satisfied."
If I format the NewDateReported field in the condition action to match the 'yyyy-MM-dd' format, the first item matching today's date triggers the "send email" action. Then the flow runs for a half-hour or so with nothing else happening, until I cancel it. There are only 245 items on my SharePoint list, so it really shouldn't take that long.
Does anyone have any ideas?
That sounds strange!
Are you able to add an email action in the no branch and include the formatDateTime(NewDateReported,'yyyy-MM-dd') in the subject line along with the ID of the List item?
Be prepared to receive a flurry of emails, but you would at least know if it is the loop that is causing the delay or the condition goes into a hung state and just not proceed.