Forum Discussion

Excel's avatar
Excel
Iron Contributor
Jul 05, 2022
Solved

Count Duplicate with the help of Excel Functions

Hello Everyone,    I have two questions : 1 -- Tells how many rows/columns have duplicates with the help of formula? E.g. 2 rows and 3 columns have duplicate values.   2 --  Tells the specific r...
  • PeterBartholomew1's avatar
    Jul 05, 2022

    Excel 

    As Riny_van_Eekelen points out, the question does not make much sense in the context of the given dataset.  The possible solutions also depend on the version of Excel you have.  For example, using Excel 365 one could define a Lambda function

    = LAMBDA(range,
        LET(
            distinct, UNIQUE(range),
            duplicated?, COUNTIFS(range, distinct) > 1,
            SUM(N(duplicated?))
        )
    )

    so that applying it column by column

    = BYCOL(Table1, CountDupsĪ»)

    gives

     

Resources