web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Setting a flow to run ...
Power Automate
Suggested Answer

Setting a flow to run a month from a button press in power apps

(1) ShareShare
ReportReport
Posted on by 68
Hello!
 
I currently have a powerapp where users create jobs that they take ownership of via email. I want to create a system where, when the job is created, a power automate flow will be scheduled to send them an email a month from them creating that job. Is there a way to do this? I basically need separate instances of a flow to run based on when the job is created.
Categories:
I have the same question (0)
  • Suggested answer
    BCBuizer Profile Picture
    22,758 Super User 2026 Season 1 on at
     
    Power Automate cloud flows have a duration limit of 30 days: Limits of automated, scheduled, and instant flows - Power Automate | Microsoft Learn
     
    Given that some monts last longer than that, not to mention that flow run history is only saved for 28 days, I suggest you run a scheduled flow on a daily basis to check any tasks that require a notification for that day and then send that notification.
     
    A good article on how to get started with such a flow can be found here: How to build basic reminder flow using Power Automate and SharePoint
     
     
    If this reply helped you in any way, please give it a Like 💜 and in case it resolved your issue, please mark it as the Verified Answer ✅.
  • Suggested answer
    manuelstgomes Profile Picture
    6,631 on at
    @BCBuizer is correct. 30 days limit is a thing to watch for.
     

    If I could propose a strategy, I would:

    1. Have the Power App save it somewhere (to a list or a database or an Excel file).
    2. Create another scheduled Flow that checks the list for items to send. The schedule could be daily, hourly—you choose.
    3. Process the items and mark them as "done."

    This way:

    • You will have a "log" of the things that were processed and when (win)
    • Your Flow won't "wait" for the correct time to send (win)
    • In the future, if needed, you can have other ways to save items to the list and the process will work without changes

    Hope this helps!

     
     
  • Suggested answer
    Valantis Profile Picture
    5,581 on at
     
    The daily scheduled flow approach from BCBuizer and manuelstgomes is the right pattern. Here's the complete setup.
     
    When a job is created in Power Apps: store the job creation date and owner email in your data source (SharePoint list or Dataverse table). Add a column for NotificationSent (Yes/No) defaulting to No.
     
    Then build a scheduled flow that runs daily:
    1. Trigger: Recurrence, every 1 day
    2. Get items (SharePoint) or List rows (Dataverse) with filter:
       - CreatedDate is less than or equal to today minus 30 days
       - NotificationSent equals No
    3. Apply to each on the results
    4. Send an email to the owner
    5. Update the item to set NotificationSent to Yes
     
    The OData filter for SharePoint to find jobs created 30+ days ago:
    CreatedDate le 'formatDateTime(addDays(utcNow(),-30),'yyyy-MM-ddTHH:mm:ssZ')'
     
    This handles any volume of jobs, gives you a full audit trail, works across any month length, and stays well within the 30-day flow duration limit since each daily run completes in seconds.
     

     

    Best regards,

    Valantis

     

    ✅ If this helped solve your issue, please Accept as Solution so others can find it quickly.

    ❤️ If it didn’t fully solve it but was still useful, please click “Yes” on “Was this reply helpful?” or leave a Like :).

    🏷️ For follow-ups  @Valantis.

    📝 https://valantisond365.com/

    💼 LinkedIn

    ▶️ YouTube

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Automate

#1
Vish WR Profile Picture

Vish WR 464

#2
Haque Profile Picture

Haque 431

#3
David_MA Profile Picture

David_MA 323 Super User 2026 Season 1

Last 30 days Overall leaderboard