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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
JoeDoe
Frequent Visitor

DAX to calculate Hierarchical sales by weight

Hi,

 

My sales data are from SQL database and my weight data are from Excel spreadesheet.

This is my model diagram:

asdasdasd0.jpg

Now I want to calculate my sales by weight. So I am looking for some fomular like this:

Sales/Weight

This has to be filtered by hierarchy. 

 

I tried this DAX measure:

Weight = 
VAR catW = SELECTEDVALUE(weight[catgory])

VAR deptW = SELECTEDVALUE(weight[subdept])

VAR catS = SELECTEDVALUE(CAT_TAB[categoryDesc])

VAR deptS = SELECTEDVALUE(SDP_TAB[DepartmentDesc])

RETURN

IF(catW=catS && deptW=deptS,SUMX(weight,weight[weight],0))

 

The weight only return a total aggregation of weight, it doesn't break down by hierarchy. Thus I can't use this weight to divide my sales.

 

What is my issue? Can anyone help me on this?

 

Thanks.

4 REPLIES 4
az38
Community Champion
Community Champion

Hi @JoeDoe 

Im not sure understand you correct, but maybe CALCULATE() will be enough?

like

IF(catW=catS && deptW=deptS,CALCULATE(SUMX(weight,weight[weight]),0))

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
JoeDoe
Frequent Visitor

@az38 Thanks for the adivse.

I found if I add the department and category from weight into the visulazation table, I can break down weight correctly.

I think my following question would be: is there any workaround for use my sales hierarchy to break down my weight data? 

Here is what I have now:

asdasdasd.jpg

az38
Community Champion
Community Champion

@JoeDoe
And what do you want to see as a result?

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
JoeDoe
Frequent Visitor

I am expecting use the hierarchy of weight to break down the sales OR use the hierarchy of sales to break down the weight.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.