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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Pikachu-Power
Impactful Individual
Impactful Individual

Wrong Total / Measure Problem

Hello,

 

I probably have a simple problem where i am looking for a simple way 🙂

 

Measure:

Consumption = CALCULATE(SUM(Table[Value]))
 
When I multiply later the Consumption with Numbers I get following wrong result for the Total:
Unbenannt.PNG
 
Measure Multiplication = Clients * Consumption 
 
How do I have to change the DAX formula in the Measure Multiplication to get the right value?
 
Thanks!
 
1 ACCEPTED SOLUTION
tamerj1
Community Champion
Community Champion

Hi @Pikachu-Power 

please use

Measure Multiplication =

SUMX (

VALUES ( TableName[Segmaent] ),

[Clients] * [Consumption]
)

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@Pikachu-Power 

Modify the measure as follows:

Total = 
SUMX( VALUES ( Table[Segment] ) , [Clients] * [Consumption] )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Pikachu-Power
Impactful Individual
Impactful Individual

Great that's it!

tamerj1
Community Champion
Community Champion

Hi @Pikachu-Power 

please use

Measure Multiplication =

SUMX (

VALUES ( TableName[Segmaent] ),

[Clients] * [Consumption]
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.