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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to build a correct total value in measure?

Dear All,

 

I am struggling a bit with a measure which should show the totyal of volume and value. Simplified theb table should look like this:

Power_BI_Adapt_4-1655971911713.png

 

The third column in red is the measure showing the result of the other two columns.

 

Currently the measure looks like this:

 

Total value = SUM('Table'[price]) * sum('Table'[Number sold])

 

I am struggling with the SUM, MAX, MIN, AVERAGE. What do I need to choose, since the current outcome looks like this (mind the incorrect total in the third column; 1587,21 where it should be 323,91):

 

Power_BI_Adapt_3-1655971850700.png

Thanks in advance for your guidance!

 

Kind regards,

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , It should be like

 

SUMX('Table', 'Table'[price]  * 'Table'[Number sold])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Perfect!

amitchandak
Super User
Super User

@Anonymous , It should be like

 

SUMX('Table', 'Table'[price]  * 'Table'[Number sold])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors