Forum Discussion
zeelongtime
4 years agoFrequent Visitor
Problem with Grand Total not totalling all the values
Hi there, I need help calculating the grand total correctly on the Allocation Column. The idea is to get the 4 Mo Average to populate everytime the 202001 Allocation Tons is 0, The formu...
- 4 years ago
Please see this video for how to get your expected total.
(2) Power BI - Tales from the front #01 - Getting the Right Total - YouTube
Pat
Anonymous
4 years agoNot applicable
Hi zeelongtime ,
You can create a measure, this is used to solve the Total error:
Measure=
VAR __table = SUMMARIZE('Table', 'Table'[202001 Allocation Tons] ,"__value",[Allocation])
RETURN
IF(HASONEVALUE('Table'[202001 Allocation Tons]), [Allocation],SUMX(__table,[__value]))
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
zeelongtime
4 years agoFrequent Visitor
Hi Liu, Thanks for taking the time.
This is not working for me, formula doesnt include the 4Mo Avg and the Allocation is a calculated field I would like to get, but I see that you included on your formulas.
Am I reading this correctly or this formula should be created after my initial calculation?