Forum Discussion

toum's avatar
toum
Helper II
2 years ago
Solved

Dax total

Hello all,

 

I need your help on this,I'm working with Power BI DAX and have a table with columns for Key, Amount, and Name. How can I calculate the sum of the Amount for each Key while ignoring redundant rows based on the Name column.

 

Thank you in advance.

  • Hi,

    These measures work

    A = MIN(Data[Amount])
    Measure = SUMX(VALUES(Data[Key]),[A])

    Hope this helps.

     

2 Replies