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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Formula used is
Solved! Go to Solution.
Hi @Yaazh - It seems like the TotalInvoicedRow calculation is returning the sum of the Invoiced values without respecting the individual row-level context, causing it to show an aggregated total for each Contact rather than the same values as the "Sum of Invoiced" column.
TotalInvoicedRow = SUM('AE Dataset'[Invoiced])
This will sum the Invoiced values for each row individually, matching the "Sum of Invoiced" column.
Proud to be a Super User! | |
Hi @Yaazh - It seems like the TotalInvoicedRow calculation is returning the sum of the Invoiced values without respecting the individual row-level context, causing it to show an aggregated total for each Contact rather than the same values as the "Sum of Invoiced" column.
TotalInvoicedRow = SUM('AE Dataset'[Invoiced])
This will sum the Invoiced values for each row individually, matching the "Sum of Invoiced" column.
Proud to be a Super User! | |