originalclassic
Technical User
In my data table i have six columns(A-F below) that i need to get count totals from. Each cell contains one of 20 preset values(1-20below). The first column always has one of the values, but each additional column may or may not depending on the complexity of the original entry. I am trying to run a report that will count all of the occurences of each of the values (regardless of which column they occur in) and then group the results by one of the other fields (contained in a 7th column of the same table). The example table below should return a count of 3 for value6. Using AND in the WHERE statement only returns a count if all six columns have the same value (never) and OR does not account for the entries that have the same value in more than one column.
A B C D E F
9
2 13 14
3 3 6
6 7 20 6 11 10
16
16 17
4
A B C D E F
9
2 13 14
3 3 6
6 7 20 6 11 10
16
16 17
4