I would like to get a unique count for a column of names. Some cells may be blank or have "Cancelled" in them. How do I get a count of unique text and exclude empty cells or those with "Cancelled" in them?
This is what I have so far - it appears to get the unique count, but fails with empty cell and includes "Cancelled": =SUM(IF(FREQUENCY(MATCH(G2:G29,G2:G29,0),MATCH(G2:G29,G2:G29,0))>0,1))