Hi
I would like to create a flow that sends a reminder on the first day of each month...even better would be the first working day of each month. I have it set to run every four Mondays, which is okay, but closer to the first of the month would be ideal.
Solved! Go to Solution.
Hi @ahaigh_lmls ,
Please refer to the following method to configure Flow.
Set Flow to run once a day to check if the current date is the first working day of the month.
Use the Expression below to get the first working day of the month.
if(not(or(equals(dayOfWeek(startOfMonth(utcNow())),0),equals(dayOfWeek(startOfMonth(utcNow())),6))),startOfMonth(utcNow(),'yyyy-MM-dd'),addDays(startOfMonth(utcNow()),if(equals(dayOfWeek(startOfMonth(utcNow())),0),1,2),'yyyy-MM-dd'))
If they are equal, send the reminder.
Image reference:
Hope it helps.
Best Regards,
Hi there! I was looking at the recurrence trigger and it looks like you can run it once a month, and begin on the first of the month. Will that work for you?
Keep us posted.
-Ed-
If this reply has answered your question or resolved your challenge, please consider marking it as a Solution. This helps other users find it more easily via search.
Ed,
Thanks for jumping in. 🙂 The syntax is confusing though, does that occur once monthly, or on the first of the month.
What do you think?
Adam
My expectation would be that it would run every month on the first.
Another approach might be to have something run daily, and look at the date, if it's equal to '1', then run your Flow.
Try it out and keep us posted.
-Ed-
If this reply has answered your question or resolved your challenge, please consider marking it as a Solution. This helps other users find it more easily via search.
Will do...Thanks for your suggestions.
Best regards,
Adam
Hi @ahaigh_lmls ,
Please refer to the following method to configure Flow.
Set Flow to run once a day to check if the current date is the first working day of the month.
Use the Expression below to get the first working day of the month.
if(not(or(equals(dayOfWeek(startOfMonth(utcNow())),0),equals(dayOfWeek(startOfMonth(utcNow())),6))),startOfMonth(utcNow(),'yyyy-MM-dd'),addDays(startOfMonth(utcNow()),if(equals(dayOfWeek(startOfMonth(utcNow())),0),1,2),'yyyy-MM-dd'))
If they are equal, send the reminder.
Image reference:
Hope it helps.
Best Regards,
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
47 | |
17 | |
16 | |
13 | |
13 |
User | Count |
---|---|
78 | |
40 | |
27 | |
22 | |
19 |