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
Jeanxyz
Impactful Individual
Impactful Individual

switch() syntax

Hi, I'm reading a DAX measure created by another developer and I get stuck with the following measure.

 

Reporting Amount Base_PL = SWITCH(

[Selected Currency],1,

[Group Currency Amount Base_PL (EUR)],2,

[Company Currency Amount Base_PL],3,

[Budget Currency Amount Base_PL (EUR)])

 

Can someone explain to me where is the evaluation condition in the function? I did a few test, it looks the formula always generate specific amounts instead of 1, 2,3,4. So why the function uses 1,2,3,4?

 

 

2 ACCEPTED SOLUTIONS
CNENFRNL
Community Champion
Community Champion

Reporting Amount Base_PL =
SWITCH (
    [Selected Currency],
    1, [Group Currency Amount Base_PL (EUR)],
    2, [Company Currency Amount Base_PL],
    3, [Budget Currency Amount Base_PL (EUR)]
)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

parry2k
Super User
Super User

@Jeanxyz based on your question this is where the condition is getting checked:

 

Reporting Amount Base_PL =
SWITCH (
    [Selected Currency],   --take the value of selected currency 
    1, [Group Currency Amount Base_PL (EUR)], --if it is 1 return this measure
    2, [Company Currency Amount Base_PL],    --if it is 2 return this measure
    3, [Budget Currency Amount Base_PL (EUR)]  -- if it is 3 return this measure
)

--if none of above condition met, means selected currency is not 1, 2, 3 it will return blank


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
parry2k
Super User
Super User

@Jeanxyz based on your question this is where the condition is getting checked:

 

Reporting Amount Base_PL =
SWITCH (
    [Selected Currency],   --take the value of selected currency 
    1, [Group Currency Amount Base_PL (EUR)], --if it is 1 return this measure
    2, [Company Currency Amount Base_PL],    --if it is 2 return this measure
    3, [Budget Currency Amount Base_PL (EUR)]  -- if it is 3 return this measure
)

--if none of above condition met, means selected currency is not 1, 2, 3 it will return blank


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Jeanxyz
Impactful Individual
Impactful Individual

Thank you so much! I see what you mean 🙂 I will use dax formatter next time.

CNENFRNL
Community Champion
Community Champion

Reporting Amount Base_PL =
SWITCH (
    [Selected Currency],
    1, [Group Currency Amount Base_PL (EUR)],
    2, [Company Currency Amount Base_PL],
    3, [Budget Currency Amount Base_PL (EUR)]
)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

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.