Forum Discussion

vanderb's avatar
vanderb
New Member
2 years ago
Solved

Total incorrect

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 infl...
  • VillyMBI's avatar
    2 years ago

    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 🙂