I have an array that has certain ERROR Codes for various cases (Case #1, #2 etc), row-wise in a spreadsheet.
I simply need a count of all various ERROR Codes. Suppose Error Code "ABC" is seen 3 times overs various cases, then it should simply show the count of ABC as 3.
If some new error code gets added to the raw data, then that should be added to the output list and the respective count should be displayed.
I simply need a count of all various ERROR Codes. Suppose Error Code "ABC" is seen 3 times overs various cases, then it should simply show the count of ABC as 3.
If some new error code gets added to the raw data, then that should be added to the output list and the respective count should be displayed.
Case#1 | ABC | JKL | PQR |
Case#2 | DEF | ||
Case#3 | XYZ | PQR | |
Case#4 | ABC | ||
To | |||
Output | |||
Error code | Count | ||
ABC | 2 | ||
DEF | 1 | ||
JKL | 1 | ||
PQR | 2 |