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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
pedroccamaraDBI
Post Partisan
Post Partisan

How to sum averages

Hello everyone
I have a simple measure that calculates the average:

Net Cost Detail AVG =
AVERAGEX( 'Product Cost Detail', 'Product Cost Detail'[Net Cost Detail])
 
I would like to have at the end of the visual the sum of all those values
 
My Net Cost Detail measure is a simple SUM of a column

Thank you all in advance
1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @pedroccamaraDBI ,

 

According to your statement, I think [Net Cost Detail AVG] is a measure, so it will work when you add it into a visual. The result of measure is based on the key columns in your visual, so I suggest you to try SUMX() function based on [Net Cost Detail AVG].

New Net Cost Detail AVG =
SUMX (
    SUMMARIZE ( 'TableName', [KeyColumnName1], [KeyColumnName2],... ),
    [Net Cost Detail AVG]
)

 

Best Regards,
Rico Zhou

 

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

4 REPLIES 4
v-rzhou-msft
Community Support
Community Support

Hi @pedroccamaraDBI ,

 

According to your statement, I think [Net Cost Detail AVG] is a measure, so it will work when you add it into a visual. The result of measure is based on the key columns in your visual, so I suggest you to try SUMX() function based on [Net Cost Detail AVG].

New Net Cost Detail AVG =
SUMX (
    SUMMARIZE ( 'TableName', [KeyColumnName1], [KeyColumnName2],... ),
    [Net Cost Detail AVG]
)

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-rzhou-msft 
I'm so sorry for this  (very) late reply  and thank you so much for your help

tamerj1
Super User
Super User

Hi @pedroccamaraDBI 

that depends on the visual itself i.e. over which column are you calculating the the average? Can you paste a screenshot?

gaurav-lakhotia
New Member

Hi @pedroccamaraDBI,

Try this - SUMX('Product Cost Detail', AVERAGE('Product Cost Detail'[Net Cost Detail]))

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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