Hi,
The function below takes the current date and calculates the date 3 days after;
In case someone comes here in the future and wants something a little more streamlined, consider the following expression. Assume Monday is Day 1, Tuesday 2, etc. for targetDay. This will output the number of days until the next targetDay:
if(equals(mod(add(sub(targetDay, dayOfWeek(utcNow())), 7), 7), 0), 7, mod(add(sub(targetDay, dayOfWeek(utcNow())), 7), 7))
This will output the date of the next targetDay:
addDays(utcNow(), if(equals(mod(add(sub(targetDay, dayOfWeek(utcNow())), 7), 7), 0), 7, mod(add(sub(targetDay, dayOfWeek(utcNow())), 7), 7)))
Depending on what you're using this for, it may be worth converting the output to local time (i.e. for inclusion in an email).
I'm looking to get next tuesday, can you help me with what will be the change in function.
Also if anyone needs to get the date of the next monday, tuesday, friday, saturday... etc. Then you can use this example flow to continually get the date of any upcoming day of the week
https://powerusers.microsoft.com/t5/Power-Automate-Cookbook/Get-Next-Date-s/td-p/2581331
That works! Thanks very much for your help.
Hi @Marty3012,
Please refer to screenshot below to get the date of the following Monday:
The expression in the Compose as below:
if(equals(dayOfWeek(utcNow()),1),addDays(utcNow(),7),if(equals(dayOfWeek(utcNow()),2),addDays(utcNow(),6),if(equals(dayOfWeek(utcNow()),3),addDays(utcNow(),5),if(equals(dayOfWeek(utcNow()),4),addDays(utcNow(),4),if(equals(dayOfWeek(utcNow()),5),addDays(utcNow(),3),if(equals(dayOfWeek(utcNow()),6),addDays(utcNow(),2),if(equals(dayOfWeek(utcNow()),0),addDays(utcNow(),1),null)))))))
The expression in the Compose 2 as below:
formatDateTime(outputs('Compose'),'yyyy-MM-dd')
The flow would run successfully as below:
Please let me know if your problem could be solved.
Best regards,
Alice
I am just having a look and trying to create using preset variables and some conditions. Basically test all the day of week logic an advance of populating the email, then populate the email with the following Monday in that way. you may want to look at dayOfWeek() in line with your expression. I'll update later once I get somewhere.
Current flow is shown below. What I'm trying to do is add the date for the forthcoming Monday in the Body of the Send Email section. The FormatDateTime() function in the body of the email is what I have at the moment.
Thanks
Hi @Marty3012
I'm having a think at ways you can achieve this but think it would be helpful if you could post pictures of your flow with any detail possible. Could you do that?
stampcoin
79
Michael E. Gernaey
70
Super User 2025 Season 1
David_MA
48
Super User 2025 Season 1