Forum Discussion

marcofalzone's avatar
marcofalzone
Helper I
3 years ago
Solved

Wrong Column Totals (Matrix)

I wrote a DAX measure that convert a YTD balance to a common currency (EUR). The measure works well when a single company is selected (1 currency) but generates a wrong Total column when I try to sel...
  • v-yueyunzh-msft's avatar
    3 years ago

    Hi , marcofalzone 

    Thanks for your provided sample .pbix file .

    According to your description, the total is wrong because it not get the summation of the columns.

    You can try to use this measure :

    Act_Eur_Ytd Test = 
    var _t =ADDCOLUMNS( CROSSJOIN(VALUES('Company'[CompanyString]), VALUES('PL_Mapping'[PLRowDescr])) , "Act_Eur_Ytd" , [Act_Eur_Ytd])
    return
    SUMX(_t ,[Act_Eur_Ytd])

    Then we can get the right total:

     

    Thank you for your time and sharing, and thank you for your support and understanding of PowerBI! 

     

    Best Regards,

    Aniya Zhang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly