If I have fields with data that has been concatenated is there a way to run a count function in a query to tell me how many times an option is found in the database?
Say 5 rows of data are:
Field 1 - a, b, c
Field 2 - d, e, f
Field 3 - a, b, c
Field 4 - d, e, f
Field 5 - d, j, k
Is there a way to tell me a count for every letter in this data since each field is concatenated? Would ideally like to get something like this:
a - 2
b - 2
c - 2
d - 3
e - 2
f - 2
j - 1
k - 1
I am able to get counts with no problems if the data isn't concatenated but am not getting any counts unless the concatenation is exactly the same options selected for each field. Any help? Thanks.
Say 5 rows of data are:
Field 1 - a, b, c
Field 2 - d, e, f
Field 3 - a, b, c
Field 4 - d, e, f
Field 5 - d, j, k
Is there a way to tell me a count for every letter in this data since each field is concatenated? Would ideally like to get something like this:
a - 2
b - 2
c - 2
d - 3
e - 2
f - 2
j - 1
k - 1
I am able to get counts with no problems if the data isn't concatenated but am not getting any counts unless the concatenation is exactly the same options selected for each field. Any help? Thanks.