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
krish007na
New Member

Measure Total not correct when created from 2 different tables

I have 2 tables as ProductTarget and Signals. I want to create a measure like ProductTarget[Target] *  Signals[Value]. Some of the ProductTarget[Target] values are 0. So the multiplication will be 0.
I have used Dax like SUMX(ProductTarget[Target]) *  SUMX(Signals[Value]). It gives correct values at row level, but total is incorrect. 

krish007na_0-1623391017646.png

If you see the total should be 0.02 as second value 0. But instead total is showing like total(sum) of Value (0.65) * total(sum) of target(0.0449) = 0.03.
I want to do multiplication and then summation. But in this case it is doing summation first and then multiplication. 
How do I can acheive this?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @krish007na ,

You can create another new measure as below to replace the previous measure [Port wgt avg]:

Measure = SUMX(GROUPBY('ProductTarget','ProductTarget'[BMName],'ProductTarget'[Desc]),[Port wgt avg])

yingyinr_0-1623839343783.png

Best Regards

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @krish007na ,

You can create another new measure as below to replace the previous measure [Port wgt avg]:

Measure = SUMX(GROUPBY('ProductTarget','ProductTarget'[BMName],'ProductTarget'[Desc]),[Port wgt avg])

yingyinr_0-1623839343783.png

Best Regards

Fowmy
Super User
Super User

@krish007na 

Hope these two tables are connected using a relationship?

Try this measure, if it doesn't work share your sample PBIX file.

Port Exp Wgt =
SUMX(
ProductTarget,
ProductTarget[Target] * RELATED (Signals[Value])
)

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

RELATED is not working 

@krish007na 

Please share a sample PBIX file. You can save in Google or One Drive and share the link here.


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

@krish007na 

Your model needs to be fixed first. You have created Many-to-many relationship and the whole file behaves unexpectedly.
If Signal is the dimension file, remove duplicates from the Column "Sedol" and set the relation to One-To-Many.
 

Fowmy_0-1623410633773.png

 

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

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.