web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Take current date and ...
Power Automate
Answered

Take current date and display date of forthcoming Monday

(0) ShareShare
ReportReport
Posted on by

Hi,

 

The function below takes the current date and calculates the date 3 days after;

 

formatDateTime(addDays(utcNow(),3),'yyyy-MM-dd')
 
However, I would like the function to display the date of the next forthcoming Monday without having to state how many days this is offset from. Furthermore, if the current date falls on a Monday, I would like the calculated date to not be the current date, but rather the following Monday. Hope that makse sense!
 
Any help appreciated.
Thanks
Categories:
I have the same question (0)
  • AlanPs1 Profile Picture
    2,471 on at

    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?

  • Marty3012 Profile Picture
    on at

    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

     

    Flow - Ex.png

  • AlanPs1 Profile Picture
    2,471 on at

    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.

  • Verified answer
    v-yuazh-msft Profile Picture
    on at

    Hi @Marty3012

     

    Please refer to screenshot below to get the date of the following Monday:

    Capture.PNG

     

    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:

    Capture.PNG

     

    Please let me know if your problem could be solved.

     

     

    Best regards,

    Alice

  • Marty3012 Profile Picture
    on at

    That works! Thanks very much for your help.

  • takolota1 Profile Picture
    4,974 Moderator on at

    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

     

    @Nareshtv 

  • Nareshtv Profile Picture
    2 on at

    I'm looking to get next tuesday, can you help me with what will be the change in function. 

  • ChuckQ Profile Picture
    Microsoft Employee on at

    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).

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 501 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 323 Moderator

#3
abm abm Profile Picture

abm abm 237 Most Valuable Professional

Last 30 days Overall leaderboard