- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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:
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@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:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Subject | Author | Posted | |
---|---|---|---|
03-26-2024 11:13 AM | |||
08-29-2024 12:51 PM | |||
07-17-2024 01:45 AM | |||
07-26-2024 12:03 AM | |||
08-01-2024 09:31 PM |
User | Count |
---|---|
19 | |
17 | |
14 | |
13 | |
11 |