M
mikeg
I am trying to tabulate errors from an automated checking tool.
The errors are listed by line. There can be hundreds of results but
mostly there are less than a dozen errors found repeatedly. I would
like to list the unique errors that occur, and list a count for how
many occurrences there are for each of those errors.
In example, assuming there are only three unique errors in a list of
20, I want a result like this (and the number can be in a separate
cell; I don't need to concatenate the error and value together in one
string)
First error 5
Second error 11
Third error 4
By defining a name, I've been able to count the unique errors using an
array -- =SUM(1/COUNTIF(Errors,Errors)). But I want that count broken
down by errors.
The errors are listed by line. There can be hundreds of results but
mostly there are less than a dozen errors found repeatedly. I would
like to list the unique errors that occur, and list a count for how
many occurrences there are for each of those errors.
In example, assuming there are only three unique errors in a list of
20, I want a result like this (and the number can be in a separate
cell; I don't need to concatenate the error and value together in one
string)
First error 5
Second error 11
Third error 4
By defining a name, I've been able to count the unique errors using an
array -- =SUM(1/COUNTIF(Errors,Errors)). But I want that count broken
down by errors.