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 all, I'm new to Power BI and DAX and have bit of an issue with the DAX totals. Is anyone able to help me please?
I'm expecting the total to be 15.7m like I see in Excel but in Power BI I get inflated figures showing 60.5m. Can anyone help me please with my DAX calculation?:
Solved! Go to Solution.
Hi @vanderb ,
The total of the table visual also calculated with the measure and so you are getting 60 M
as 3855.55 * 15700 = 60532135.
Please try using below dax for Sales
Sales = SUMX('Your table', [Qty] * [Cost])
I hope this will help you 🙂
Hi @vanderb ,
The total of the table visual also calculated with the measure and so you are getting 60 M
as 3855.55 * 15700 = 60532135.
Please try using below dax for Sales
Sales = SUMX('Your table', [Qty] * [Cost])
I hope this will help you 🙂