Forum Discussion

Kumar_Raju's avatar
Kumar_Raju
Copper Contributor
Oct 25, 2022

How to find unique value from duplicate value in numbers while in data filter

How to find unique value from duplicate value in numbers while in data filter

  • Patrick2788's avatar
    Patrick2788
    Silver Contributor
    I believe I know what you're getting at but I'm not certain because of the wording. Do you happen to have a sample workbook you can upload?
    • Kumar_Raju's avatar
      Kumar_Raju
      Copper Contributor

      Patrick2788 

      I am new for this, can you please guid me how to updalod the working file in this portal.

       

      Actually I used COUNTA(UNIQUE(A4:A1178)) formula to get single value from cells with duplicate value by which whole column count and after filter show same value for some criteria too.

       

      Kindly suggest...

      • PeterBartholomew1's avatar
        PeterBartholomew1
        Silver Contributor

        Kumar_Raju 

        Your formula

        = COUNTA(UNIQUE(list))

        is perfectly valid, as is

        = ROWS(UNIQUE(list))

        The latter focusses upon the dimensions of the resulting array whereas the former looks more at the content.  If blank fields are present within the list

        = ROWS( UNIQUE( FILTER(list, list<>"") ) )

        could be useful.

         

         

Resources