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
PBInonpro
Helper III
Helper III

Can anyone explain? Same measure in Calc Column as in Measure. Two different results.

TestColumn  = CALCULATE(SUMX(plan, plan[REMAINING] * 10), plan[PROJECT] = "OFFICE")
TestMeasure = CALCULATE(SUMX(plan, plan[REMAINING] * 10), plan[PROJECT] = "OFFICE")

PBInonpro_1-1674865254257.png

 

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@PBInonpro , Column will consider the full table and then apply the filter on that, if added. It can not be compared with the measure.

 

In measure calculate with and without filter will give different result

TestMeasure = CALCULATE(SUMX(plan, plan[REMAINING] * 10), plan[PROJECT] = "OFFICE")

 

vs

 

TestMeasure = CALCULATE(SUMX(plan, plan[REMAINING] * 10), FIlter(plan, plan[PROJECT] = "OFFICE"))

 

will be different

 

 

refer: Calculate with and Without filter : https://youtu.be/cN8AO3_vmlY?t=9310

View solution in original post

Hi @PBInonpro ,

 

Your calculated column returns correct result 139500 on myside.

RicoZhou_0-1675068713194.png

RicoZhou_1-1675068801243.png

I think 141500 is the sum of the calculated column which is calculated based on your data model. You can try MAX/MIN function on [TestColumn] in table visual and check the result. If you still couldn't find the result, please show us a screenshot of your table or share a sample file with us.

 

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

3 REPLIES 3
amitchandak
Super User
Super User

@PBInonpro , Column will consider the full table and then apply the filter on that, if added. It can not be compared with the measure.

 

In measure calculate with and without filter will give different result

TestMeasure = CALCULATE(SUMX(plan, plan[REMAINING] * 10), plan[PROJECT] = "OFFICE")

 

vs

 

TestMeasure = CALCULATE(SUMX(plan, plan[REMAINING] * 10), FIlter(plan, plan[PROJECT] = "OFFICE"))

 

will be different

 

 

refer: Calculate with and Without filter : https://youtu.be/cN8AO3_vmlY?t=9310

Thanks, but is there a way to see where the 141,500 is coming from on the column? 

Hi @PBInonpro ,

 

Your calculated column returns correct result 139500 on myside.

RicoZhou_0-1675068713194.png

RicoZhou_1-1675068801243.png

I think 141500 is the sum of the calculated column which is calculated based on your data model. You can try MAX/MIN function on [TestColumn] in table visual and check the result. If you still couldn't find the result, please show us a screenshot of your table or share a sample file with us.

 

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.

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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