joe321

New Member
Joined
Jan 28, 2015
Messages
17
CompanyID Total_Sales
1 5
2 5
3 5
4 5
5 5


I have a measure Total_Sales. The total needs to be allocated to the parent company in another measure. The parent company has an ID of 1 in the example above. How can I get the sum of total_sales and assign it to measure Total_Parent where ID equals 1 as in the output below?


CompanyID Total_Sales Total_Parent
1 5 25
2 5 BLANK()
3 5 BLANK()
4 5 BLANK()
5 5 BLANK()

Thanks in advance.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I don't think you need another another measure but a company hierarchy table where it says the parent company for company IDs 1-5 is 1.
 
Upvote 0
This is what I came up with:

ParentID=1

------------------

Total_Parent=
VAR
CurID=SELECTEDVALUE(tblCO[CompanyID])
RETURN

IF(HASONEVALUE(tblCO[ID]),
IF(curID=[ParentID],
CALCULATE([Total_Sales],ALL(tblCO[CompanyID])),
BLANK()
),
CALCULATE([Total_Sales],ALL(tblCO[CompanyID]))
)


Appears to give the desired results, but wondering if there is a more efficient way to do it.
 
Upvote 0

Forum statistics

Threads
1,213,482
Messages
6,113,913
Members
448,532
Latest member
9Kimo3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top