
I have a flow where am using Do Until loop to check for the status column and send remainder every 14 days for the user to take action and stop the reminders when status = "Closed" . My problem is when the flow reaches one month old, the flow expires and stops sending emails. I read it as a limitation of a flow. How do I overcome or bypass that. I want to send continuous reminders every 14 days until status = closed. Is it possible?
Maybe you can create a scheduled flow that run every day and check status of list items. You can add a hidden date column in your list ( last reminder ), and in your scheduled flow, you loop through each items and if status is not closed and last reminder date + 14 days < current date, you send a mail and you update last reminder with current date. If last reminder is blank it means that no reminder has been sent so you can use last update date of item instead.