Forum Discussion

danni1979's avatar
danni1979
Regular Visitor
6 years ago
Solved

Tableau LOD Fixed to Power BI

Hi All, We are really struggling converting Tableau reports to Power BI where the FIXED function is used. I can get the correct value at detail level but i can't get a correct total.   Below is a ...
  • parry2k's avatar
    6 years ago

    danni1979 this measure will do it, change column name and table name as per your model

     

    Amount Owed Sum = 
    SUMX ( 
        VALUES ( 'Table'[Debt ID] ), 
        CALCULATE (
            MAX ('Table'[Amount Owed] ),
            ALLEXCEPT ('Table','Table'[Debt ID] )
        ) 
    )