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'm trying to figure out how to subtract the two values in the column "count" from each other.
This is a filtered table so I cant pivot it etc.
hoping there is some code that will put each value in a variable and then I can subtract them after.
any advise would be greatly appreciated.
Solved! Go to Solution.
You can write a measure to calculate each amount then subtract the measures.
Total Count = CALCULATE ( SUM ( 'YourTable'[Count] ), 'YourTable'[Metric] = "Grand Total" )
Manual Count = CALCULATE ( SUM ( 'YourTable'[Count] ), 'YourTable'[Metric] = "Manual" )
Difference = [Total Count] - [Manual Count]
Thank you so much for your help - this was slowly draining the life from me 🙂
You can write a measure to calculate each amount then subtract the measures.
Total Count = CALCULATE ( SUM ( 'YourTable'[Count] ), 'YourTable'[Metric] = "Grand Total" )
Manual Count = CALCULATE ( SUM ( 'YourTable'[Count] ), 'YourTable'[Metric] = "Manual" )
Difference = [Total Count] - [Manual Count]
User | Count |
---|---|
98 | |
75 | |
69 | |
49 | |
26 |