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
Train23
Frequent Visitor

DAX Help

Hello I need some help with the following DAX Syntax.

 

I have a Measure [total qty] and need to get some DAX to do the following:

 

If [total qty] < 1000, Then Divide[total qty] by 1.  If [total qty] < 5000 Then Divide [total qty] by 2, IF [total qty] < 50000, Then Divide [total qty] by 4, IF [total qty] > 50000 then Divide [total qty] by 6.

 

The multiple conditions are tripping me up.

Thank you

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

You can use the SWITCH function to avoid multiple IF statements - i.e

 

Your Measure = SWITCH(TRUE(), 
    [total qty] < 1000, Divide([total qty], 1),
    [total qty] < 5000 Divide([total qty], 2), 
    [total qty] < 50000, Divide([total qty], 4),
    [total qty] > 50000, Divide([total qty], 6)
)

 

View solution in original post

2 REPLIES 2
vicky_
Super User
Super User

You can use the SWITCH function to avoid multiple IF statements - i.e

 

Your Measure = SWITCH(TRUE(), 
    [total qty] < 1000, Divide([total qty], 1),
    [total qty] < 5000 Divide([total qty], 2), 
    [total qty] < 50000, Divide([total qty], 4),
    [total qty] > 50000, Divide([total qty], 6)
)

 

Vicki, you ROCK thank you so very much, this WORKS.  I have spent the last 2 days trying to get it working.  THANK YOU for being part of this great community.

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!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors