Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
Solved! Go to Solution.
Hey,
I guess you are looking for the SWITCH() function:
https://msdn.microsoft.com/en-us/library/gg492166.aspx
Hope this helps
Hey,
I guess you are looking for the SWITCH() function:
https://msdn.microsoft.com/en-us/library/gg492166.aspx
Hope this helps
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?
Regards
User | Count |
---|---|
117 | |
75 | |
62 | |
50 | |
44 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |