Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I created one measures, its return duplicates while i'm using columns in from another table.
And also its returning the wrong values.
can you guys advice any measure to find sum value respective of particular column data.
Solved! Go to Solution.
Hi, @NavaneethaRaju
Measure:
Measure 1 = CALCULATE(SUM('Table'[QTY]),ALLEXCEPT('Table','Table'[ID]))
Measure 2 = CALCULATE(SUM('Table'[QTY]),ALL('Table'))
Measure 3 = CALCULATE(SUM('Table'[QTY]))
Which result is your desired outcome? If none of them is correct, please tell us the output result you expect.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @NavaneethaRaju
Measure:
Measure 1 = CALCULATE(SUM('Table'[QTY]),ALLEXCEPT('Table','Table'[ID]))
Measure 2 = CALCULATE(SUM('Table'[QTY]),ALL('Table'))
Measure 3 = CALCULATE(SUM('Table'[QTY]))
Which result is your desired outcome? If none of them is correct, please tell us the output result you expect.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please clarify the problem. Does this table explain the problem or show the expected result?