I have a table which lists data as follows:
Company Name, Car 1, Car 2, Car 3, Car 4, Car 5, Car 6.
For each car field, the value can take either 1, 1A, 2, 3, 3A, 4, 5, or 6. Field 'Car 1' always has a value, but the others do not necessarily take a value.
I need to display a list by company with the total count of the fields in each car.
For example:
"1" "1A" "2" "3" "4" ....etc
Company 1 5 4 3 4 9
I'd also like to display this on a report if possible. Thanks!
Company Name, Car 1, Car 2, Car 3, Car 4, Car 5, Car 6.
For each car field, the value can take either 1, 1A, 2, 3, 3A, 4, 5, or 6. Field 'Car 1' always has a value, but the others do not necessarily take a value.
I need to display a list by company with the total count of the fields in each car.
For example:
"1" "1A" "2" "3" "4" ....etc
Company 1 5 4 3 4 9
I'd also like to display this on a report if possible. Thanks!