Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi -
In regards to date calculations, is there a way to calculate the past Friday of today's date ?
That is, if today is 02/08/2024, the 'past Friday' was 02/02/2024.
This is, if today is 02/10/2024, the 'past Friday' is 02/09/2024.
Any assistance is appreciated - Jerry
Solved! Go to Solution.
You left out the most important one - what should it be on 2/9/2024 ?
Also, do you want this as DAX or as Power Query?
Past Friday = TODAY()-mod(WEEKDAY(TODAY(),2)+2,7)
or
Past Friday = TODAY()-MAXX(FILTER(ADDCOLUMNS(GENERATESERIES(0,7),"WD",WEEKDAY(TODAY()-[Value],2)),[WD]=5),[Value])
You left out the most important one - what should it be on 2/9/2024 ?
Also, do you want this as DAX or as Power Query?
Past Friday = TODAY()-mod(WEEKDAY(TODAY(),2)+2,7)
or
Past Friday = TODAY()-MAXX(FILTER(ADDCOLUMNS(GENERATESERIES(0,7),"WD",WEEKDAY(TODAY()-[Value],2)),[WD]=5),[Value])
User | Count |
---|---|
8 | |
7 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |