Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
josevaras
Microsoft Employee
Microsoft Employee

Switch Function

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. 

 

Data Thru =

IF( WEEKDAY(
TODAY() ) = 1 , TODAY() -2,
IF( WEEKDAY(
TODAY() ) = 2 , TODAY() -3,
IF( WEEKDAY(
TODAY() ) = 3 , TODAY() -4,
IF( WEEKDAY(
TODAY() ) = 4 , TODAY() -5,
IF( WEEKDAY(
TODAY() ) = 5 , TODAY() -6,
IF( WEEKDAY(
TODAY() ) = 6 , TODAY() -7,
IF( WEEKDAY(
TODAY() ) = 7 , TODAY() -8,
TODAY()
)
1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@josevaras 

You can do it this way as well:

 

Data Thru = TODAY() -  WEEKDAY(TODAY(),16)

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

4 REPLIES 4
Fowmy
Super User
Super User

@josevaras 

You can do it this way as well:

 

Data Thru = TODAY() -  WEEKDAY(TODAY(),16)

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

josevaras
Microsoft Employee
Microsoft Employee

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.

Fowmy_0-1624307894089.png

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

themistoklis
Community Champion
Community Champion

@josevaras 

 

Try the following:

New Column = SWITCH(TRUE, WEEKDAY(TODAY() ) = 1 , TODAY() -2

                                                  WEEKDAY(TODAY() ) = 2 , TODAY() -3

                                                  WEEKDAY(TODAY() ) = 3 , TODAY() -4 ....., TODAY())

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.