Let's POWER Automate

From no-code to low-code

Menu
  • Expressions
  • Filters
  • General
  • Application specific solutions
    • Dataverse
    • Excel
    • Forms
    • Outlook
    • Planner
    • Power Apps
    • SharePoint
    • Teams
  • Triggers
  • Ready to use solutions
    • Approval Process Template
    • Task Delegation App
    • The Ultimate Power Automate expressions cheat sheet
    • Power Automate HTTP requests to SharePoint cheat sheet
    • Power Automate HTTP requests to Graph API cheat sheet
  • ABOUT ME
  • Get help with your flow
  • POWER PLATFORM SERVICES
Menu

Trigger Power Automate flow on a specific working day (up to 5th)

Posted on December 11, 2022September 14, 2023 by Tom

“Can I apply the ‘first working day’ solution also to another specific day, e.g. trigger Power Automate flow on the 4th working day?”


The previous post described how to trigger a Power Automate flow on the first working day in a month, but what if you want a different day? If it shouldn’t be the first day as it’s often busy but a later day, e.g. the 4th day in a month? Can the solution be adjusted? How?

Note: this solution won’t skip holidays as I’m not aware of any way to check holidays before triggering a flow. It’ll also work only up to the 5th working day including max. 1 weekend.

The idea stays the same

The logic behind the trigger condition stays the same – if the day is in a weekday, trigger the flow. If it’s Saturday or Sunday, wait until the next Monday.

Power Automate trigger specific working day

Change the number for date

The only difference from the original article is in the numbers that identify the date.

and(equals(int(utcNow('dd')),<whichDay>),not(equals(dayOfWeek(utcNow()),6)),not(equals(dayOfWeek(utcNow()),0)))

To send it on the 4th day:

and(equals(int(utcNow('dd')),4),not(equals(dayOfWeek(utcNow()),6)),not(equals(dayOfWeek(utcNow()),0)))

Change it also for Sundays…

The same applies also to the conditions when the date was Saturday or Sunday – you must increment the date. If the day ends up being a Sunday, you want to send it on the following Monday, the planned date + 1 day.

and(equals(int(utcNow('dd')),<whichDay+1>),equals(dayOfWeek(utcNow(),1)))

For the 4th day it’ll be 5, e.g.

and(equals(int(utcNow('dd')),5),equals(dayOfWeek(utcNow(),1)))

… and for Saturdays

If it takes 1 extra day for Sundays, for Saturdays it takes 2. Take again the day number, and this time increment it by 2.

and(equals(int(utcNow('dd')),<whichDay+2>),equals(dayOfWeek(utcNow(),1)))

To follow with the 4th day example, the number will be 6 this time.

and(equals(int(utcNow('dd')),6),equals(dayOfWeek(utcNow(),1)))

Put it all together

All that’s left is to put all the conditions together in a single trigger condition.

@or(
   and(equals(int(utcNow('dd')),<whichDay>),not(equals(dayOfWeek(utcNow()),6)),not(equals(dayOfWeek(utcNow()),0))),
   and(equals(int(utcNow('dd')),<whichDay+1>),equals(dayOfWeek(utcNow(),1))),
   and(equals(int(utcNow('dd')),<whichDay+2>),equals(dayOfWeek(utcNow(),1)))
)

Summary

If you want to trigger Power Automate on a specific working day, you have to use the various dates involved. The first one is the actual day, what’s the default scenario if it’s during the workweek. The second one is the date+1 for situations when the original date ends up being Sunday. And the last one is the date+2 to cover for Saturdays. Once you add these 3 numbers in the trigger condition you should be able to trigger the flow on any specific day working day in a month.

But don’t forget that this solution will work only for the 1st 5 working in a month as it includes only 1 weekend! A generic solution would look similar to this post, which I might cover in the future.


πŸš€ Master Power Automate

Join 2,000+ professionals getting actionable Power Automate tutorials, solutions, cheat sheets & tips every week.

No spam. Unsubscribe anytime.

8 thoughts on “Trigger Power Automate flow on a specific working day (up to 5th)”

  1. Johannes says:
    December 21, 2022 at 1:27 am

    great article thank you very much

    Reply
  2. V. K. says:
    March 23, 2023 at 6:08 pm

    How should the expression be if I want to trigger the flow every day starting from the 4th working day?

    Reply
    1. Tom says:
      April 2, 2023 at 11:50 am

      Hello V.K.,
      no idea, I never had to deal with such request.

      Reply
  3. Alfonso Uzcategui says:
    November 17, 2023 at 6:59 pm

    Hello, although this is very helpful, there is an issue with this formula, if the first day of the month is saturday or sunday, the trigger will activate on the first or second working day of the month respectively, I don’t know if there is a workaround for this. Thanks.

    Reply
    1. Alfonso Uzcategui says:
      November 17, 2023 at 7:19 pm

      This is if you are looking to activate on the 3rd working day i am sorry, and I think this would solve it for the 3rd working day, you would have to add wednesday and thursday for the 4th and 5th day.

      @or(
      and(equals(int(utcNow(‘dd’)),3),or(not(equals(dayOfWeek(utcNow()),1)),not(equals(dayOfWeek(utcNow()),1))),
      and(equals(int(utcNow(‘dd’)),3), equals(dayOfWeek(utcNow()),5)),
      and(equals(int(utcNow(‘dd’)),3),not(equals(dayOfWeek(utcNow()),6)),not(equals(dayOfWeek(utcNow()),0))),
      and(equals(int(utcNow(‘dd’)),4),equals(dayOfWeek(utcNow(),1))),
      and(equals(int(utcNow(‘dd’)),5),equals(dayOfWeek(utcNow(),1)))
      )

      Reply
      1. Alfonso Uzcategui says:
        November 17, 2023 at 7:26 pm

        just realized is also wrong…

        Reply
  4. Matthew says:
    April 19, 2024 at 2:22 pm

    Hello and thank you for your great site and articles. Is there a way to use this to make a flow trigger specifically on the 20th day of every month?

    Reply
    1. Tom says:
      May 25, 2024 at 9:38 pm

      Hello Matthew,
      if you mean the 20th day of a month, no matter what day of the week it is, you can use a daily trigger with a trigger condition @and(equals(int(utcNow(‘dd’)),20). Or with a monthly trigger with the start time of the 20th of the current month.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

πŸš€ Master Power Automate

Join 2,000+ professionals getting actionable Power Automate tutorials, solutions, cheat sheets & tips every week.

No spam. Unsubscribe anytime.

Working on an Approval process?

Use the Approval Process Template and the Task Delegation App to skip the hard part and deploy a fully functional approval solution on a SharePoint list in minutes! And then the next one, and the next one...

Approval Template Preview ✨ Learn more ✨

Turn ideas into flows with ease!

Grab the complete Power Automate Cheat Sheet Bundleβ€”everything you need to master expressions, SharePoint HTTP calls, and Graph API in Power Automate.

Cheat Sheet Bundle Preview ✨ Get the Cheat Sheets

Didn't find what you were looking for?
Need to adjust a solution to fit your needs?
Or would you just like to get an assistance from somebody with thousands of hours of experience with Power Automate?

Power Automate blogs worth visiting

Damien Bird
Dennis (Expiscornovus)
Paul Murana

©2025 Let's POWER Automate | Theme by SuperbThemes