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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Lolu
Regular Visitor

Trying to rewrite the following IFELSE satement in DAX

 

Hi Guys,

I am trying to reqritethis in DAX.

 

(IF [CASEPRIORITY] = 1 THEN [CRITICALRESPONSETIME]

 

ELSEIF [CASEPRIORITY] = 2 THEN [URGENTRESPONSETIME]

 

ELSEIF [CASEPRIORITY] = 3 THEN [NORMALRESPONSETIME]

END)

 

At the moemnt I am only able to write for one condition, how can I get all three in one DAX statement.

Many Thanks in Advance.

L

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

I guess you are looking for the SWITCH() function:

https://msdn.microsoft.com/en-us/library/gg492166.aspx

 

Hope this helps



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

3 REPLIES 3
TomMartens
Super User
Super User

Hey,

 

I guess you are looking for the SWITCH() function:

https://msdn.microsoft.com/en-us/library/gg492166.aspx

 

Hope this helps



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Yes! I rewrote it as

Deadline = SWITCH([CASEPRIORITY],"1",[CRITICALRESPONSETIME],"2",[URGENTRESPONSETIME],"3",[NORMALRESPONSETIME])

and it works prectectly.

Thanks

L

Hi @TomMartens,

 

Great to hear the problem got resolved! Could you accept the helpful reply as solution to close this thread? Smiley Happy

 

Regards

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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