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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
pbrainard
Helper III
Helper III

SWITCH function with &&

Trying to use the SWITCH function to populate a new column. Seems to be ignoring the first statement for the Landing and New Ground Bothell lines. All Landing are coming out as 15 and New Ground Bothell as 9. New Ground Avondale is okay. Can someone help me format this correctly? Thanks!

 

numUnits = SWITCH(TRUE(),
('All Agency FY21'[Date] <= 03/17/2020 && 'All Agency FY21'[Location]="Landing"),20,
('All Agency FY21'[Date] > 03/17/2020 &&'All Agency FY21'[Location]="Landing"),15,
('All Agency FY21'[Date] <= 03/17/2020 && 'All Agency FY21'[Location]="New Ground Bothell"),14,
('All Agency FY21'[Date] > 03/17/2020 && 'All Agency FY21'[Location]="New Ground Bothell"),9,
'All Agency FY21'[Location]="New Ground Avondale",24)
1 ACCEPTED SOLUTION
Jos_Woolley
Solution Sage
Solution Sage

Hi,

 

Most likely because you haven't made your dates explicit. As such, an expression such as


<= 03/17/2020

 

will be evaluated as 'less than the continued fraction 3 divided by 17 divided by 2020', i.e. <=0.000087361677344...

 

Try replacing with DATEVALUE, e.g.

 

DATEVALUE("03/17/2020")

 

Regards

View solution in original post

3 REPLIES 3
Jos_Woolley
Solution Sage
Solution Sage

Hi,

 

Most likely because you haven't made your dates explicit. As such, an expression such as


<= 03/17/2020

 

will be evaluated as 'less than the continued fraction 3 divided by 17 divided by 2020', i.e. <=0.000087361677344...

 

Try replacing with DATEVALUE, e.g.

 

DATEVALUE("03/17/2020")

 

Regards

Thanks. Still learning!!! Works perfect.

You're welcome!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors