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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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())
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 32 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 86 | |
| 71 | |
| 38 | |
| 28 | |
| 25 |