Hi there. I have a SharePoint list with records. Within other columns there are the:
Created
Start date
End date
columns in this list.
I created a flow with 1 day recurrence and I set a Get past time for 6 months on the recurrence.
What I need is for daily check if there are records in the list that Created column is equal to the Get past time (6 months from today) and if this is the case then to send an email as a reminder. I have set the email reminder task too.
My issue is that I found how to do things like:
Created lt formatDateTime(body('Get_past_time'),'yyyy-dd-MM')
in my Get Items filter query but this is not what I need because I need to send reminders only for the records that Created is exactly 6 months before today.
Another thing that I would like to do but I don't know how (the logic) is that before sending the reminder I need to check that today is before End Date column.
Also I don't know if this is feasible but can I make the flow send reminders every 6 months? Actually flow needs to run every day and check if Created date is exactly 6 months, or 12 months) and generally multiplies of 6 monhts (6, 12, 18 etc.) as long as today is before Ending date?