I hope I can explain this in writing. Here goes...I have a data field that can contain multiple values. It's the department(s) field. Users may enter an individual dept value or multiples (separated by commas - ie. 24,26,59). I need to generate a report that summarizes the amount of records that have each dept within a certain time period. Data could look as follows:
record 1 - dept = 24,36,59
record 2 - dept = 24
record 3 = dept = 57, 59, 99
etc.
I can't figure out how to summarize this data since the field allows multiple values.
In the above scenario, I would want a result of:
dept 24 2
dept 36 1
dept 57 1
dept 59 2
dept 99 1
Could someone please tell me how to separate the values in this field so it summarizes properly? Thanks a lot for your help!
record 1 - dept = 24,36,59
record 2 - dept = 24
record 3 = dept = 57, 59, 99
etc.
I can't figure out how to summarize this data since the field allows multiple values.
In the above scenario, I would want a result of:
dept 24 2
dept 36 1
dept 57 1
dept 59 2
dept 99 1
Could someone please tell me how to separate the values in this field so it summarizes properly? Thanks a lot for your help!