• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Trying to consolidate 3 measures into 1?

biglostenergy

New Member
Hi I was able to create these 3 measures:

Total = (CALCULATE('Sales'[x], 'Customers'[Markets]="All of US"))


CustomSales = (CALCULATE(SWITCH(
SELECTEDVALUE('Customers'[Total US Markets]),
"Retailer 4",
CALCULATE([x],'ITEM Control'[Control Item] = "N"),
CALCULATE([x]))))


Division Equation =
SUMX (
VALUES ( 'Customers'[Markets]),
DIVIDE (
CustomSales,
CALCULATE ( Total, All('Customers'[Markets] )
) * 100
))



But I want to improve my DAX and just create one measure to have everything involved.

What the 'Total' Measure is doing is creating my dominator.

I have a bunch of Customers and one of them has this special use case where I need to use a switch statement to get the information for that retailer, this is essentially my numerator (there's 30 different retailers, the switch is only needed for retailer 4)

CustomSales = (CALCULATE(SWITCH(
SELECTEDVALUE('Customers'[Total US Markets]),
"Retailer 4",
CALCULATE([x],'ITEM Control'[Control Item] = "N"),
CALCULATE([$]))))


Now I have this measure doing this Retailer/Total * 100, for each specific retailer

Division Equation =
SUMX (
VALUES ( 'Customers'[Markets]),
DIVIDE (
CustomSales,
CALCULATE ( Total, All('Customers'[Markets] )
) * 100
))

Hoping to get all 3 into just one DAX measure I can copy and paste and send to friends.
 

Attachments

  • 1667708791433.png
    1667708791433.png
    39.3 KB · Views: 1
Back
Top