cancel
Showing results for 
Search instead for 
Did you mean: 
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



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

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



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

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
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.

Top Solution Authors