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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
zeelongtime
Frequent Visitor

Problem with Grand Total not totalling all the values

Hi there,

I need help calculating the grand total correctly on the Allocation Column.

zeelongtime_2-1632520189204.png

 

The idea is to get the 4 Mo Average to populate everytime the 202001 Allocation Tons is 0, 

The formula I have in as follow which provide what I want at the cell level but total is wrong.

=IF(HASONEVALUE(Data[202001 Allocation Tons]),SUM(Data[4 Months Average]),SUM([202001 Allocation Tons]))

 

Thanks

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

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

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

4 REPLIES 4
v-yangliu-msft
Community Support
Community Support

Hi  @zeelongtime ,

Sorry, I read the wrong information, you try to use this dax:

Measure=
VAR __table = SUMMARIZE(Data, Data[202001 Allocation Tons] ,"__value", [202001 Allocation Tons])
RETURN
IF(HASONEVALUE(Data[202001 Allocation Tons]), Data[4 Months Average],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.

v-yangliu-msft
Community Support
Community Support

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.

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?

mahoneypat
Employee
Employee

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

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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