Forum Discussion
Summin a calculated weighted average in a Matrix Column subtotal
- 7 years ago
Hi cschuchert
You may refer to below measure.
Totals = SUMX ( 'TableA', TableA[Forecast_Value] * TableA[DaysInMth] ) / SUMX ( 'TableA', TableA[DaysInMth] )Subtotal = VAR a = SUMMARIZE ( TableA, TableA[Division], "b", [Totals] ) RETURN SUMX ( a, [b] )Regards,
Cherie
- 7 years ago
You are a genius!! I saw your post where it looked like I hadn't sent the data-I'm not sure what happened to my post with the excel data but it's there now.
I cannot thank you enough!! I'll have to research SUMMARIZE so I understand how to apply it to other visualizations.
Regards,
Carolyn
Thank you-I did find that post yesterday and can get the first part of the Measure I'm stuck on the false portion though. Here is the data for this app:
Hi cschuchert
You may refer to below measure.
Totals =
SUMX ( 'TableA', TableA[Forecast_Value] * TableA[DaysInMth] )
/ SUMX ( 'TableA', TableA[DaysInMth] )Subtotal =
VAR a =
SUMMARIZE ( TableA, TableA[Division], "b", [Totals] )
RETURN
SUMX ( a, [b] )
Regards,
Cherie
- cschuchert7 years agoFrequent Visitor
You are a genius!! I saw your post where it looked like I hadn't sent the data-I'm not sure what happened to my post with the excel data but it's there now.
I cannot thank you enough!! I'll have to research SUMMARIZE so I understand how to apply it to other visualizations.
Regards,
Carolyn