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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
josevaras
Employee
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

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.