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

Calculated Measure is duplicating information on a table visual

I created two Calculated Measures based on SUM that work perfectly in my case.

 

But when I used those to create a third one using the following formula it duplicated (ou triplicated) the data in my table.

 

The measure is:

Progress Deviation = ('public table1'[Actual Progress]/'public table1'[Calculated Progress]) -1

 

If I remove the '-1' the table is fine (but the value is wrong 🙂 ).

 

What can I do to solve this? I'm just subtrating a -1 to all values...

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

 

You can try to use divide function to deal with this issue.

 

Measure = DIVIDE(MAX([Column1]),MAX([Column2]),0)-1


Calculate Column = DIVIDE([Column1],[Column2],0)-1

 

Reference link:

DIVIDE Function (DAX)

 

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous,

 

You can try to use divide function to deal with this issue.

 

Measure = DIVIDE(MAX([Column1]),MAX([Column2]),0)-1


Calculate Column = DIVIDE([Column1],[Column2],0)-1

 

Reference link:

DIVIDE Function (DAX)

 

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Hello

 

Thanks for the help, but I ended up by using your suggestion with a SUMX

 

SUMX(TABLE,DIVIDE(MAX([Column1]),MAX([Column2]),0)-1) 

 

It worked. 🙂

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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