I am wanting to send reminder emails on certain days of the month. First Monday, second Monday and so on.
There is what I have so far. I have an excel file with the dates that I need to send on.
Is there a way to put the dates in without having to put in 12 different controls? I know I can brute force it and put a separate line for each date, but I was hoping to avoid that.
Thanks for your help.
Chip
Solved! Go to Solution.
Hello @Chipper ,
using the same principle, second Tuesday will be between the 8th and 14th day of the month (greater than 7, less than 15)
@and(less(int(utcNow('dd')),15),greater(int(utcNow('dd')),7)
Hello @Chipper ,
if you use the scheduled trigger and set the interval to Weekly run, it'll allow you to select which day of the week it should run.
But if it should run only the first Monday in each month, you'll have to combine it with a trigger condition.
I checked out the link you included about the trigger. That is a lot better than what I was planning on doing. But it did elaborate on if I needed to do the send Tuesday of the month. I posted a comment asking about it.
run only if the date part from today's date is less than 8 (= 1 to 7):
@less(int(utcNow('dd')),8)
Notes: utcNow('dd') will take only the day part from today's date
int(...) will convert the day from today's date into an integer
less(...) will compare if the day part from today's date is less than 8
Hello @Chipper ,
using the same principle, second Tuesday will be between the 8th and 14th day of the month (greater than 7, less than 15)
@and(less(int(utcNow('dd')),15),greater(int(utcNow('dd')),7)
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 |
---|---|
66 | |
22 | |
16 | |
16 | |
11 |
User | Count |
---|---|
133 | |
44 | |
32 | |
32 | |
28 |