I have a serial # column that I am trying to create a "helper" column to verify that the serial # entered is unique - to avoid/flag duplicate entries with conditional formatting later.
I have tried this formula in the blue highlighted cell pictured below:
=COUNTM(DISTINCT(([Computer Serial # (Parent Asset)]:[Computer Serial # (Parent Asset)])))
It comes back with a "1", when it should be a "2" since the serial # is duplicated in row 2.
I have also tried this formula with the same incorrect answer of "1":
=COUNT(DISTINCT(COLLECT([Computer Serial # (Parent Asset)]:[Computer Serial # (Parent Asset)], [Computer Serial # (Parent Asset)]:[Computer Serial # (Parent Asset)])))
Is this a glitch, or am I doing something wrong?