I'm a new user and trying to do some code counting aggregation.
I have 5 columns of codes (Col1, Col2, Col3, Col4, Col5), and in each there are 20 possible code values for a data record, let's say the possible values fall within 00 to 20. Only 1 possible code per record per column. So data might look like:
Rec Col1 Col2 Col3 Col4 Col5
A 05 10
B 12 00 19
C 01 12 15 00 05
D 05
I come from an excel and SQL background, but not sure how to crack this beast mode (or otherwise).
Aside from counting across all 5 columns so that the output indicates count of each distinct code (eg: three of 05, two of 12, two of 00, etc), the codes need to be relabeled into values. So for simplicity, see attached, and imagine instead of the values 10, 09, 05, etc, it's something like Green, Red, and Blue.
Any direction would be appreciated, thank you.