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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Agustina
Frequent Visitor

Why SWITCH does not work as expected replace for my nested IFs?

 Hello colleagues,

 

I am working creating a calculated column to get different due dates based on each item priority and status.

I used to have nested IFs and worked perfectly fine, but I would like to be more efficient and use SWITCH instead, although I cannot get it to fully work - most of the rows I get are blanks.

 

Here are both exppressions:

 

DueDate_OldButWorking =
IF(
NOT(ISBLANK('2021 Cases'[Submission Date])) && RELATED(AUX_DetailedStatus[Level]) > 4,
IF(
RELATED(AUX_Priority[Level]) = 3,
'2021 Cases'[Submission Date] + 21,
IF(
RELATED(AUX_Priority[Level]) = 1 || RELATED(AUX_DetailedStatus[Level]) = 2,
'2021 Cases'[Submission Date] + 5,
BLANK()
)
)
)
 
DueDate_New =
SWITCH(
TRUE(),
NOT(ISBLANK('2021 Cases'[Submission Date])) && RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) = 3, DATEADD('2021 Cases'[Submission Date], 21, DAY),
NOT(ISBLANK('2021 Cases'[Submission Date])) && RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) = 2, DATEADD('2021 Cases'[Submission Date], 5,DAY),
NOT(ISBLANK('2021 Cases'[Submission Date])) && RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) = 1, DATEADD('2021 Cases'[Submission Date], 5,DAY),
BLANK()
)
 
Can you identify what is that I am not doing correctly?
Many thanks in advance!
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Agustina , Try like

 

DueDate_New =
if(NOT(ISBLANK('2021 Cases'[Submission Date])) ,
SWITCH(
TRUE(),
RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) = 3, DATEADD('2021 Cases'[Submission Date], 21, DAY),
RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) in {1,2}, DATEADD('2021 Cases'[Submission Date], 5,DAY),
BLANK()
), blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Agustina 

 

Just a quickie: The fact that you get 2 different results from IF and SWITCH only mean that your SWITCH is NOT logically equivalent to your IF. You just make a logical mistake when you translate into SWITCH.

amitchandak
Super User
Super User

@Agustina , Try like

 

DueDate_New =
if(NOT(ISBLANK('2021 Cases'[Submission Date])) ,
SWITCH(
TRUE(),
RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) = 3, DATEADD('2021 Cases'[Submission Date], 21, DAY),
RELATED(AUX_DetailedStatus[Level]) > 4 && RELATED(AUX_Priority[Level]) in {1,2}, DATEADD('2021 Cases'[Submission Date], 5,DAY),
BLANK()
), blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors