cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tomh
Resolver I
Resolver I

Delay Until 2am

Hello All:

 

I have a simple Approval flow that triggers upon recurrence every 3 days. It gets file properties and if file approval=pending it sends email to approver for approval. Our biggest challenge is that users are often in the files needing to be approved. Therefor when the the approver approves and the flow tries to update the file properties to 'Approve' it cannot do so because the file is locked for editing. The flow continues and errors but the approver is not aware of the fact that the file properties have not been updated. Then again on the third day they receive an email for approval of the same file because the properties are still=pending becuase the file was locked for editing and the metadata could not be updated on previous attempt. I have worked with this flow for months now and have tried just about everything. The only thing I have left is to try to add some kind of delay function into the flow to update the file properties at a specific time when the least amount of users are potentially in the file, say 2am. 

 

I am open to options here. I have not been able to successfully implement a delay in such a way that would only update at 2am. The closest I have been able to get is to delay updating for a given amount of hours say 10 hours. This presents a problem as well as hours of business are roughly between 6am and 6pm. So even if an approver approves at 6am sharp the metadata would then be updated at 4pm, which still falls between our business hours thus potentially leaving the file locked for editing. 

 

Any help or suggestions would be greatly appreciated.

 

Thanks all!

 

Tom

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
tom_riha
Super User
Super User

Hello @tomh ,

to delay until 2am the next day you can use the following expression inside 'Delay until' action.

addHours(utcNow('yyyy-MM-dd'),26,'yyyy-MM-ddTHH:mmZ')

utcNow('yyyy-MM-dd') will give you today's date at 00:00, to which you use the addHours() expression to add 26 hours to get tomorrow 2am and format it as 'yyyy-MM-ddTHH:mmZ' to fit the requirements of the 'Delay until' action.

image.png

 



[ If I have answered your question, please Accept the post as a solution. ]
[ If you like my response, please give it a Thumbs Up. ]

[ I also blog about Power Automate solutions even for non-IT people. ]

View solution in original post

21 REPLIES 21
Anonymous
Not applicable

@tomh ,

 

You could calculate how many hours are between utcNow() and 2am tomorrow and have the flow delay for that amount of time:

 

the flow in the below screenshot does the following:

 

1. Converts the current time in UTC (Universal Coordinated Time) to local timezone and returns only the Hours number (from a 24-hour format, so 1:00PM=13).

 

2. subtracts the current hour from 26 and returns that figure. 26 is the number of hours there are from 00:00 on day one to 0200 (2:00AM) the following day. this calculation determines how many hour there are from right now to 0200 tomorrow morning.

 

3. delays the flow for that many hours

DelayFlow.png

 

the expressions that you need are in the action block comments in the screenshot.

 

 

I hope this helps!

 

thanks,

Kyle

Paulie78
Super User
Super User

Is there a reason that I am not understand that you cannot just use the delay until action?

 

DelayUntil;.PNG

tom_riha
Super User
Super User

Hello @tomh ,

to delay until 2am the next day you can use the following expression inside 'Delay until' action.

addHours(utcNow('yyyy-MM-dd'),26,'yyyy-MM-ddTHH:mmZ')

utcNow('yyyy-MM-dd') will give you today's date at 00:00, to which you use the addHours() expression to add 26 hours to get tomorrow 2am and format it as 'yyyy-MM-ddTHH:mmZ' to fit the requirements of the 'Delay until' action.

image.png

 



[ If I have answered your question, please Accept the post as a solution. ]
[ If you like my response, please give it a Thumbs Up. ]

[ I also blog about Power Automate solutions even for non-IT people. ]
Anonymous
Not applicable

It looks like I like doing things the hard way... @Paulie78  and @tom_riha 's solutions are much more simple and elegant.

Paulie78
Super User
Super User

@Anonymous don't feel too bad about it. I came up with an elaborate solution also, which I think is quite neat! That is when I noticed delay until 😥

@tom_riha 

Thank you for this. Are you saying that utcNow always returns time of 00:00? So, adding any hours to that figure will always update at set time regardless of whether the approval occurs at 7am or 3pm?

 

@tomh 

Expression utcNow() without parameter returns date and time when the action was executed = now. But you if you add a format parameter where you ignore the time part utcNow('yyyy-MM-dd') it'll give you 00:00 time.



[ If I have answered your question, please Accept the post as a solution. ]
[ If you like my response, please give it a Thumbs Up. ]

[ I also blog about Power Automate solutions even for non-IT people. ]

Does this look correct?

Rhia.JPG

Yes, that looks just fine. 🙂



[ If I have answered your question, please Accept the post as a solution. ]
[ If you like my response, please give it a Thumbs Up. ]

[ I also blog about Power Automate solutions even for non-IT people. ]

@tom_riha 

Thank you again for this. I will test now and report back the success. 

 

Tom

tomh
Resolver I
Resolver I

@tom_riha 

Hello.

 

The flow did not work as expected.

The flow was manually triggered at 1:09pm on 11/6 as a test on four files added to SharePoint. The flow proceeded to update the file properties at 9:00pm on the same day. The intended result was to update file properties at precisely 2:00am. The delay until input value shown on the successful run shows 'Delay Until 2020-11-07T02:00:002.

 

Any thoughts on why the flow updated the file properties at 9:00pm instead of at 2:00am?

 

Thanks!


Tom

 

Anonymous
Not applicable

@tomh ,

 

my first thought would be to check the TimeZone.

 

In your screenshot above, you're adding the number of hours required to get from utcNow() (when the flow was triggered) to 2:00AM UTC.

 

If you're in Eastern Time, that means the flow is going to wait until 9:00PM EST.

 

You can either manually adjust your expression to account for the timezone difference (note that this will not account for DST next spring), or you can use the Convert TimeZone action block and pass in your addHours() expression.

 

thanks,

Kyle

@Anonymous 

Thank you for this. Yes we are on EST and want the flow to execute the 'Update File Properties' at precisely 2:00am the following day. Can you provide the formula for this by chance?

Thanks!


Tom

Hello @tomh ,

that could be a difference in a timezone. What account is running the flow? What timezone it has configured? I'm not sure but it could be user specific.

Edit: I just did a few tests and it expects time in UTC timezone, so you'll need to adjust the time as @Anonymous already suggested.



[ If I have answered your question, please Accept the post as a solution. ]
[ If you like my response, please give it a Thumbs Up. ]

[ I also blog about Power Automate solutions even for non-IT people. ]
Anonymous
Not applicable

@tomh ,

 

I would suggest attempting one of the solutions that I suggested, and then request assistance if you're unable to get either (or both) to work.

 

You've been given the expression that will get you want you want, you just need to adjust it to meet your specific needs.

 

thanks,

Kyle

Hello @Anonymous 

 

Maybe I'm misunderstanding what has been provided as the initial expression. I have control over when the flow is triggered but do not have control over when the approval is completed. The 'Update File Properties' action is the step that I believe I need to address here and that is dependent on when the actual approval is executed. I have no control over when the approval action is executed and so simply adding hours in the form of a delay will not achieve what I need if I apply it to when the approval is executed. I need a set value I believe irrelevant of when the approval is executed to update file properties at 2:00am EST only.

Does that make sense?

 

Or is it as simple as adding 6 hours to the 26 hour value to get to 2:00am? 

Anonymous
Not applicable

@tomh ,

 

Yes, that does make sense; and I understand where you're coming from and that it seems counter-intuitive to be adding a set number of hours when you don't know WHEN the approval will be executed (i.e. you don't know the value of "utcNow()" [ remember that utcNow() returns the current time in UTC timezone] ).

 

what @tom_riha's solution does is help you calculate how many hours are between:

 

1. The time that the flow runs AKA the "current" time AKA the value of the expression utcNow()

 

and 

 

2. the next occurence of 2:00AM (let's agree to call it 2:00AM tomorrow morning since we'll assume that the flow is executing "today")

 

To calculate that time gap we need to know both of those points in time.

 

The first one is easy: the expression utcNow() returns that exact value. If the flow executes today at 12 noon UTC, the value of utcNow() will be 2020-11-09T12:00:00Z (utcNow() is a datetime value, hence why it has the date in it also). Keep in mind that UTC is five hours ahead of EST so when the value of utcNow() is 12pm (noon), it's actually 7:00AM EST.

 

The second point in time is a little more tricky to figure out, but it involves finding a concrete reference point from which we can calculate when (in how many hours) 2:00AM tomorrow morning will occur. @tom_riha's expression above does just that by using a starting point of 00:00 this morning, the beginning of the day, by taking utcNow() and removing the time component; this effectively reduces the time component to 00:00 as he explained above. So, now, it doesn't matter when utcNow() is; the above expression will always return 00:00 (i.e. midnight) this morning.

 

Since 2:00AM tomorrow morning will always be 26 hours after 00:00 this morning, we can add 26 hours to 00:00 this morning to get the datetime of 2:00AM tomorrow morning.

 

HOWEVER!

 

Remember that all of the numbers we just crunched are based on utcNow() which returns the datetime in the UTC time zone. With no adjustments, the above calculations will return datetimes five hours EARLIER for each of the calculated values. So, if the flow was run at noon today UTC, you'd get the following values in for the respective time zones:

UTC (desired):

utcNow() = 2020-11-09T12:00:00Z

utcNow('yyyy-MM-dd') = 2020-11-09T00:00:00Z

addHours(utcNow('yyyy-MM-dd'),26,'yyyy-MM-ddTHH:mmZ') = 2020-11-10T02:00:00Z

 

EST (actual):

utcNow() = 2020-11-09T07:00:00Z

utcNow('yyyy-MM-dd') = 2020-11-08T19:00:00Z

addHours(utcNow('yyyy-MM-dd'),26,'yyyy-MM-ddTHH:mmZ') = 2020-11-09T21:00:00Z

 

 

If that makes sense, then it's clear now that an adjustment has to be made to the value that is being passed into the Delay Until action block.

 

Either you can add five hours to the "26" in the expression above, OR, you can pass that expression into a Convert Time Zone action block and pass the output of that into the Delay Until.

 

Does that makes sense?

 

thanks,
Kyle

@Anonymous , @tom_riha 

 

I'm still not sure we are on the right path...the GetUTCNow with the formatting applies to when the flow was triggered correct? I think I need to apply the Get UTCNow to when the approval occurs and set specific value vs setting in relation to when the flow was triggered. No? Because it could be 2 hour or two days before the approval step is completed and if the Get UTCNow applies to when the flow is triggered rather than when the approval occurs then the file update could happen prematurely, correct? If the GetUTCNow is nested below the Condition, would it pull the UTC of when the approval occurs or the UTC of when the flow initially triggers?

THx all!

 

Helpful resources

Announcements

Power Platform Connections - Episode 6 | March 23, 2023

Episode Six of Power Platform Connections sees David Warner and Hugo Bernier talk to talk to Business Applications MVP Shane Young, alongside the latest news, product updates, and community blogs.    Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!        Show schedule in this episode:  0:00 Cold Open 00:24 Show Intro 01:02 Shane Young Interview 22:00 Blogs & Articles 22:20 Integrate FullCalendar.io with Power Pages 23:50 Text Data 25:15 Zero to Hero Power Apps Saga 25:44 Parent Hub Association 26:33 Using Custom Values for OneNote Power Automate References​ 28:04 ​Dynamics Power Israel 28:44 Create Beautiful Canvas Apps in Dataverse for Teams ​ 30:36 Outro & Bloopers  Check out the blogs and articles featured in this week’s episode:   https://francomusso.com/integrate-fullcalendar-io-with-power-pages-from-json-basics-to-advanced-outp... @crmbizcoach https://yerawizardcat.com/text/ @YerAWizardCat www.fromzerotoheroes.com/mentorship ​ @thevictordantas https://www.expiscornovus.com/2023/03/16/parent-hub-association/ ​ @Expiscornovus https://lindsaytshelton.com/2023/03/15/the-painful-process-of-custom-values-for-onenote-power-automa... @lshelton_Tech https://never-stop-learning.de/create-beautiful-canvas-apps-in-dataverse-for-teams/ @MMe2K    Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiered live on our YouTube at 12pm PST on Thursday 23rd March 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.   

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.    Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash   ScottShearer     Rusk   ChristianAbata     cchannon   Koen5     a33ik        AaronKnox        Matren        Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg     rubin_boer     cwebb365       If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Microsoft Power Platform | March 2023 Newsletter

Welcome to our March 2023 Newsletter, where we'll be highlighting the great work of our members within our Biz Apps communities, alongside the latest news, video releases, and upcoming events. If you're new to the community, be sure to subscribe to the News & Announcements and stay up to date with the latest news from our ever-growing membership network who find real "Power in the Community".        LATEST NEWS Power Platform Connections Check out Episode Five of Power Platform Connections, as David Warner II and Hugo Bernier chat with #PowerAutomate Vice President, Stephen Siciliano, alongside reviewing out the great work of Vesa Juvonen, Waldek Mastykarz, Maximilian Müller, Kristine Kolodziejski, Danish Naglekar, Cat Schneider, Victor Dantas, and many more.       Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!   Did you miss an episode?  Catch up now in the Community Connections Galleries Power Apps, Power Automate, Power Virtual Agents, Power Pages     Power Platform leading a new era of AI-generated low-code development.   **HOT OFF THE PRESS** Fantastic piece here by Charles Lamanna on how we're reinventing software development with Copilot in Power Platform to help you can build apps, flows, and bots with just a simple description! Click here to see the Product Blog         Copilot for Power Apps - Power CAT Live To follow on from Charles' blog, check out #PowerCATLive as Phil Topness gives Clay Wesener Wesner a tour of the capabilities of Copilot in Power Apps.           UPCOMING EVENTS   Modern Workplace Conference Check out the Power Platform and Microsoft 365 Modern Workplace Conference that returns face-to-face at the Espace St Martin in Paris on 27-28th March. The #MWCP23 will feature a wide range of expert speakers, including Nadia Yahiaoui, Amanda Sterner, Pierre-Henri, Chirag Patel, Chris Hoard, Edyta Gorzoń, Erika Beaumier, Estelle Auberix, Femke Cornelissen, Frank POIREAU, Gaëlle Moreau, Gilles Pommier, Ilya Fainberg, Julie Ecolivet, Mai-Lynn Lien, Marijn Somers, Merethe Stave, Nikki Chapple, Patrick Guimonet, Penda Sow, Pieter Op De Beéck, Rémi Riche, Robin Doudoux, Stéphanie Delcroix, Yves Habersaat and many more.  Click here to find out more and register today!     Business Applications Launch 2023 Join us on Tuesday 4th April 2023 for an in-depth look into the latest updates across Microsoft Power Platform and Microsoft Dynamics 365 that are helping businesses overcome their biggest challenges today. Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating and creating using AI-powered capabilities, driving productivity with automation, and building future growth with today’s leading technology. Click Here to Register Today!       Power Platform Conference 2023 We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5th, 2023! But first, let's take a look below at some fun moments from MPPC 2022 in Orlando Florida. 2023 sees guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, and many more taking part, so why not click the link below to register for the #PowerPlatformConf today! Vegas, baby! Click Here to Register Today!      COMMUNITY HIGHLIGHTS Check out our top Super and Community Users reaching new levels!  These hardworking members are posting, answering questions, kudos, and providing top solutions in their communities.   Power Apps:  Super Users:  @WarrenBelz  |  @iAm_ManCat  Community Users: @LaurensM | @Rusk | @RJM07    Power Automate:   Super Users: @abm  | @Expiscornovus | @RobElliott  Community Users:  @grantjenkins | @Chriddle    Power Virtual Agents:   Super Users: @Expiscornovus | @Pstork1  Community Users: @MisterBates | @Jupyter123 | Kunal K   Power Pages: Super Users:  @OliverRodriguesOliverRodrigues | @Mira_Ghaly  Community Users: @FubarFubar | @ianwukianwuk  LATEST PRODUCT BLOG ARTICLES  Power Apps Community Blog  Power Automate Community Blog  Power Virtual Agents Community Blog  Power Pages Community Blog  Check out 'Using the Community' for more helpful tips and information:  Power Apps, Power Automate, Power Virtual Agents, Power Pages 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (1,790)