Forum Discussion

LimitedWisdom's avatar
LimitedWisdom
New Member
7 years ago
Solved

Removing Duplicate Rows in Some Situations

I'm a complete BI newbie. I've got a table imported. I'm doing some basic analytics that are proving to be more complicated than I thought!    I have a table of people. I have a handful of columns ...
  • Ashish_Mathur's avatar
    7 years ago

    Hi,

     

    This DAX formula works

     

    =SUMX(SUMMARIZE(VALUES(Table1[Address]),[Address],"ABCD",MIN(Table1[Count])),[ABCD])

     

    Hope this helps.