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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Table grand total issue (division generates avg total and not a sum)

Hi All

 

When I create a measure that calculates a division ("/") between two different numbers and I place it on a Table, I get the average of each result in the Grand Total row.

If I use the +,- or * signs Power Bi will calculate a sum in the total instead.

Can I get this with a divison as well?

 

My dax is: 

My new measure = SUM('CUBE'[column A])/[Measure 1])

FYI: Measure1 is only a "distinct count"

 

Example of what Power Bi does:

CitiesMy Measure
Paris22.36
Milan5.33
London11.8
Grand total13.16333

What I want:

 

CitiesMy Measure
Paris22.36
Milan5.33
London11.8
Grand total39.49
2 ACCEPTED SOLUTIONS
v-cherch-msft
Employee
Employee

Hi @Anonymous 

 

You may try below measure:

Measure =
IF (
    HASONEVALUE ( 'CUBE'[Cities] ),
    [My new measure],
    SUMX ( VALUES ( 'CUBE'[Cities] ), [My new measure] )
)

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Anonymous
Not applicable

Thanks a bunch this has done the trick!

😄

View solution in original post

3 REPLIES 3
v-cherch-msft
Employee
Employee

Hi @Anonymous 

 

You may try below measure:

Measure =
IF (
    HASONEVALUE ( 'CUBE'[Cities] ),
    [My new measure],
    SUMX ( VALUES ( 'CUBE'[Cities] ), [My new measure] )
)

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks a bunch this has done the trick!

😄

Hi @Anonymous 

Kindly mark my answer as a solution if you feel that makes sense. 

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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