Forum Discussion
toum
Helper II
2 years agoDax 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 re...
- 2 years ago
Hi,
These measures work
A = MIN(Data[Amount])Measure = SUMX(VALUES(Data[Key]),[A])Hope this helps.
Ashish_Mathur
Super User
2 years agoHi,
These measures work
A = MIN(Data[Amount])Measure = SUMX(VALUES(Data[Key]),[A])
Hope this helps.