I have an excel spread sheet that contains a list of server names in column B. The server names appear multiple times in this column.
I would like to count the number of unique server names in a give range.
The range is B2:B1400
I tried this but it returned 0
=SUM(IF(FREQUENCY(B2:B1400,B2:B1400)>0,1))
Would someone know how?