I am wanting to create two Compose actions that contain the first date in the current week and the last day in the current week based on today's date. I'm sure there is some really clever solution staring me in the face but would appreciate any and all help.
Solved! Go to Solution.
@Anonymous
The following expression placed in a compose action will give you the beginning of the week:
addDays(utcNow(),mul(dayOfWeek(utcNow()),-1),'yyyy-MM-dd')
The following will give you the end of the week:
addDays(utcNow(),add(6,mul(dayOfWeek(utcNow()),-1)),'yyyy-MM-dd')
Hi @Anonymous ,
What day is the Start and End Dates for the current week on your understanding?
Is that Sunday is the Start Date and Saturday is the End Dates?
If yes, Please refer to screenshot below to create the flow:
the expression for the Start Date of this week is Compose:
if(equals(dayOfWeek(utcNow()),1),addDays(utcNow(),-1),if(equals(dayOfWeek(utcNow()),2),addDays(utcNow(),-2),if(equals(dayOfWeek(utcNow()),3),addDays(utcNow(),-3),if(equals(dayOfWeek(utcNow()),4),addDays(utcNow(),-4),if(equals(dayOfWeek(utcNow()),5),addDays(utcNow(),-5),if(equals(dayOfWeek(utcNow()),6),addDays(utcNow(),-6),if(equals(dayOfWeek(utcNow()),0),utcNow(),null)))))))
The expression for the End Date of this week is Compose 2:
if(equals(dayOfWeek(utcNow()),1),addDays(utcNow(),5),if(equals(dayOfWeek(utcNow()),2),addDays(utcNow(),4),if(equals(dayOfWeek(utcNow()),3),addDays(utcNow(),3),if(equals(dayOfWeek(utcNow()),4),addDays(utcNow(),2),if(equals(dayOfWeek(utcNow()),5),addDays(utcNow(),1),if(equals(dayOfWeek(utcNow()),6),addDays(utcNow(),0),if(equals(dayOfWeek(utcNow()),0),addDays(utcNow(),6),null)))))))
And you could format the date type with expression below Compose 3-Sart Date:
formatDateTime(outputs('Compose'),'yyyy-MM-dd')
And you could format the date type with expression below Compose 4-End Date:
formatDateTime(outputs('Compose_2'),'yyyy-MM-dd')
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous - Check out this thread. It may lead you down the right path: https://powerusers.microsoft.com/t5/Building-Flows/Take-current-date-and-display-date-of-forthcoming-Monday/td-p/195960
Hello @Anonymous
Please look at all the expression related to Date and time - then just think you way through the steps using those expressions, a single if equals (if your week starts on a Monday), and one or two sub expressions.
The first date of the current week can then be found 🙂
What have you tried already?
Kind regards, John
@Anonymous
The following expression placed in a compose action will give you the beginning of the week:
addDays(utcNow(),mul(dayOfWeek(utcNow()),-1),'yyyy-MM-dd')
The following will give you the end of the week:
addDays(utcNow(),add(6,mul(dayOfWeek(utcNow()),-1)),'yyyy-MM-dd')
Hi @Anonymous ,
What day is the Start and End Dates for the current week on your understanding?
Is that Sunday is the Start Date and Saturday is the End Dates?
If yes, Please refer to screenshot below to create the flow:
the expression for the Start Date of this week is Compose:
if(equals(dayOfWeek(utcNow()),1),addDays(utcNow(),-1),if(equals(dayOfWeek(utcNow()),2),addDays(utcNow(),-2),if(equals(dayOfWeek(utcNow()),3),addDays(utcNow(),-3),if(equals(dayOfWeek(utcNow()),4),addDays(utcNow(),-4),if(equals(dayOfWeek(utcNow()),5),addDays(utcNow(),-5),if(equals(dayOfWeek(utcNow()),6),addDays(utcNow(),-6),if(equals(dayOfWeek(utcNow()),0),utcNow(),null)))))))
The expression for the End Date of this week is Compose 2:
if(equals(dayOfWeek(utcNow()),1),addDays(utcNow(),5),if(equals(dayOfWeek(utcNow()),2),addDays(utcNow(),4),if(equals(dayOfWeek(utcNow()),3),addDays(utcNow(),3),if(equals(dayOfWeek(utcNow()),4),addDays(utcNow(),2),if(equals(dayOfWeek(utcNow()),5),addDays(utcNow(),1),if(equals(dayOfWeek(utcNow()),6),addDays(utcNow(),0),if(equals(dayOfWeek(utcNow()),0),addDays(utcNow(),6),null)))))))
And you could format the date type with expression below Compose 3-Sart Date:
formatDateTime(outputs('Compose'),'yyyy-MM-dd')
And you could format the date type with expression below Compose 4-End Date:
formatDateTime(outputs('Compose_2'),'yyyy-MM-dd')
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@ScottShearer, that is very helpful. I noticed it is giving Sunday and Saturday as the end dates. Is there a way to configure to give Monday and Friday?
@Anonymous
Sure - imply add one day for the beginning of week expression and subtract one day for the end of week expression.
Beginning of week - never on Sunday:
addDays(addDays(utcNow(),mul(dayOfWeek(utcNow()),-1),'yyyy-MM-dd'),1,'yyyy-MM-dd')
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.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
64 | |
27 | |
21 | |
15 | |
13 |
User | Count |
---|---|
125 | |
46 | |
44 | |
35 | |
31 |