Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello - how does one change the below to be able to use the Switch function? TIA
The goal is that for any day of the week, the date reverts to the most recent Friday.
Solved! Go to Solution.
@josevaras
You can do it this way as well:
Data Thru = TODAY() - WEEKDAY(TODAY(),16)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@josevaras
You can do it this way as well:
Data Thru = TODAY() - WEEKDAY(TODAY(),16)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks for responding. Can you explain to me why type 16?
@josevaras
It sets the week start day as Saturday, check the following table so the weekday gives number three by which the date is pushed back by three days.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Try the following:
New Column = SWITCH(TRUE, WEEKDAY(TODAY() ) = 1 , TODAY() -2
WEEKDAY(TODAY() ) = 2 , TODAY() -3
WEEKDAY(TODAY() ) = 3 , TODAY() -4 ....., TODAY())
| User | Count |
|---|---|
| 49 | |
| 37 | |
| 33 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 132 | |
| 99 | |
| 56 | |
| 37 | |
| 37 |