cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
gonzl605
Regular Visitor

Send email -3 business day of the month

Hello - this might be a simple solution but it's driving me nuts. I want an automated email to be sent the 3rd business day before the end of the month. 

Example:

  • November 26th
  • January 27th
  • February 24th
1 ACCEPTED SOLUTION

Accepted Solutions
gonzl605
Regular Visitor

@DamoBird365 @Anonymous @ScottShearer Thanks guys! I combined a bit from each of you to get to where I need to get to. Tested it by changing some info to make it true that today is the day I need and bam! Sent email. I've learned more about Power Automate in this thread than I have in the last month!

View solution in original post

12 REPLIES 12
ScottShearer
Most Valuable Professional
Most Valuable Professional

@gonzl605 

There are really a number of parts to your question.  First, you need to find the end of the current month.

Here is a blog post to find the end of the month

Once you find the end of the month, you can use addDays() and subtract 2 more days from it.

Then you need to know if the resulting date is a weekday.

Use a dayOfWeek() expression - that will return Sunday as 0 and Saturday as 6.

You can use a condition or write an expression that says if the day of week is 0 or 6, subtract two days from the date (use an addDays() expression).

 

If you need an example, let me know.

 

If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Scott

Hi @gonzl605 

 

I notice @ScottShearer has given you an idea, I was working on the solution and will go ahead and post my version as follows.

 

First, using the "Add to Time" action, I can get the start of this month and add 1 month to the date i.e. with today being 09/11/2021 (it the UK at least 😅), this would return 01/12/2021.  Then using the same action again, I am able to subtract a day and get the end of this month i.e. 30/11/2021.

 

DamoBird365_1-1636490601858.png

Next I have created an array of dates (using a select on a range 0 to 7, the last 7 days of this month and used an expression to indicate the day of the week, 0 and 6 being Sunday and Saturday.  I use sub to turn the item() into a negative, i.e. Sub(0,0) is 0, sub(0,1) is -1, then -2 etc.  This allows me to get the last 7 days of the month, including the last day of the month.  I probably on need the last 5 but this will allow you or someone else to adapt for 4th last day, 5th last day etc.


Select:

FROM range(0,7)

date adddays(body('Last_Day_of_This_Month'),sub(0,item()))

dayofweek dayOfWeek(adddays(body('Last_Day_of_This_Month'),sub(0,item())))

 

Filter Array (in advanace mode)

@and(not(equals(item()?['dayofweek'], 0)),not(equals(item()?['dayofweek'], 6)))

 

DamoBird365_2-1636490702116.png

The final compose is to return the 3rd element of the array (after it has been filtered).  Elements start from 0,1,2 and so the 3rd element is called by integer 2.

 

body('Filter_array')?[2]?['date']

 

Hopefully this helps you to achieve your goal, pretty complicated but a good challenge.

 

Please consider accepting my answer as a solution if it helps to solve your problem.

Cheers
Damien

Please take a look and subscribe to my YouTube Channel for more Power Platform ideas and concepts, or take a look at my website. Thanks

 

Anonymous
Not applicable

To find the day three days before the month ends, add a condition and compare 

startOfDay(utcNow())

to

subtractFromTime(startOfMonth(addToTime(utcNow(),1,'Month')),3,'Day')

 

The first expression just cuts the hours, minutes and seconds off the timestamp, so you get the plain date.

The second adds a month to the timestamp which will move you into the following month (don't worry, if you add a month to the 1st of January, you will get the 28th of February, not the 2nd of March), then goes to the start of this following month and subtracts three days, which brings you back three days into the current month from the end of it.

 

If both render the same result, you know you are three days before the current month ends.

@DamoBird365 Thanks a ton for the solution! As a newbie it took me a while to follow but I got it to work! 🙂 

Would you mind finishing it off and letting me know how I loop it in with actually sending the email? I am familiar with the email composure piece but how do I get to to shoot off the email on that specific date? Is it as simple as adding "Send email with options"?

Hi @gonzl605 

 

I would setup a daily recurrence trigger, and then implement a condition.  If utcnow() equals 3rd business day of month, branch yes, else branch no.  You might need to use formatdatetime() to ensure both dates are in same format.  I.e. formatdatetime(date,'yyyy-MM-dd').

 

I guess the other option would be to set up a recurrence based on 22nd of each month and then use the delay action based on the new date.  Your flow would wait until that date and wouldn't therefore run daily.

 

Damien

Anonymous
Not applicable

Hi,

to achieve a mail being sent off three workdays before the end of a month, you'd have to do several things. Parts are already described above.

  • Create a scheduled cloud flow that is triggered once every day
  • Make the action conditional, i. e. the sending of the mail. The condition would be that the current date matches the criterion "three workdays before the end of the month". On all but one day of each month your flow won't do anything.
  • Design the criterion properly. What do you want to take into account:
    • Weekdays, i. e. Saturday and Sunday don't count. This is pretty regular and can be handled using a formula
    • Holidays - difficult, the patterns aren't that easy to model. You'd probably need a comparison to some kind of calendar

Can you maybe be more specific regarding the latter issue? Holidays or not?

 

Best

Henrik

Anonymous
Not applicable

I thought about the "business" day question a little longer. As long as we can ignore holidays, a formula calculating the third-last business day of the current month is:

 

 

subtractFromTime(startOfMonth(addToTime(utcNow(),1,'Month')),min(4,max(2,mod(add(4,dayOfWeek(utcNow())),7))),'Day')

 

 

Anonymous
Not applicable

HAZET_0-1636540884487.png

 

The condition is 

startOfDay(utcNow()) eq subtractFromTime(startOfMonth(addToTime(utcNow(),1,'Month')),min(4,max(2,mod(add(3,dayOfWeek(utcNow())),7))),'Day')

 

Hi @Anonymous 

 

I like that you have used expressions and a single action but I am not getting the 3rd last business day of the month.

 

subtractFromTime(startOfMonth(addToTime(utcNow(),1,'Month')),min(4,max(2,mod(add(4,dayOfWeek(utcNow())),7))),'Day')

 

Can you explain your thinking as it is definitely much cleaner than mine 😉

 

Damien

Anonymous
Not applicable

Hi Damien,

I shall try 🙂

  • I first look at the pattern, how does the weekend affect the effective number of days you have to go back
    • If the last of the month is Sunday to Tuesday, you have to go 4 days back (e. g. 0 Tuesday, -1 Monday, -2 Sunday, -3 Saturday, -4 Friday)
    • If the last of the month is a Saturday, only 3 days: 0 Saturday, -1 Friday, -2 Thursday, -3 Wednesday
    • If it is Wednesday to Friday, two days back suffice
  • Then I looked for a function that would give me those numbers
    • dayofweek(utcNow()) gives you the day of the week as 0 for Sunday to 6 for Saturday
    • mod(add(4,dayofweek(utcNow())),7) shifts this row by 4, so you get 0 for Wednesday to 6 for Tuesday, in particular a 2 for Friday, a 3 for Saturday and a 4 for Sunday. Looks nice already, but the numbers for the other days are either too large or too small.
    • min(2,max(4,mod(add(4,dayofweek(utcNow())),7))) makes sure you get at least a 2 but no more than 4. The row should now be Su 4, Mo 4, Tu 4, We 2, Th 2, Fr 2, Sa 3 - which is exactly what we need.
  • now we calculate the first day of the following month startOfMonth(addToTime(utcNow(),1,'Month')) 
  •  then we go back from there the calculated number of days - and here is where I made a mistake i fear - I need to shift the whole row one day back, as I wanted to get three workdays including the last of the month, now I am getting three days from the beginning of the next month.

Should be easily fixed - I just don't have the time to test it right now. I assume shifting min, max and add up one each will do the trick.

gonzl605
Regular Visitor

@DamoBird365 @Anonymous @ScottShearer Thanks guys! I combined a bit from each of you to get to where I need to get to. Tested it by changing some info to make it true that today is the day I need and bam! Sent email. I've learned more about Power Automate in this thread than I have in the last month!

Hi @Anonymous 

 

I like the use of Mod - clever.  I was in the process of working it out, my notepad has 4 4 4 2 2 2 3 - just like you - definitely a different approach but more efficient!  I see that @gonzl605 is sorted.  Thanks for sharing.

 

Damien

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,542)