I have a query and it is doing just as I want it to. It displays each record, and also has a field called 'status' that can have five different values.
The possible choices in this field are 'selectstatus'(the default), the other choices are, 'monitoring', 'working resolution','deferred', or 'closed'.
I have a count field in my query that puts a number of how many records have occurances of that value. The query output looks something like this:
STATUS COUNT(STATUS) OTHERFIELD1 OTHERFIELD2
selectstatus 3 somevalue somevalue
Selectstatus 3 somevalue somevalue
selectstatus 3 somevalue somevalue
monitoring 1 somevalue somevalue
Working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
deferred 1 somevalue somevalue
closed 2 somevalue somevalue
closed 2 somevalue somevalue
What I want to do is on my report to simply total up the field called 'count', for each of the different value types. For example, I would like the report to say:
selectstatus 9
monitoring 1
working resolution 16
deferred 1
closed 4
The possible choices in this field are 'selectstatus'(the default), the other choices are, 'monitoring', 'working resolution','deferred', or 'closed'.
I have a count field in my query that puts a number of how many records have occurances of that value. The query output looks something like this:
STATUS COUNT(STATUS) OTHERFIELD1 OTHERFIELD2
selectstatus 3 somevalue somevalue
Selectstatus 3 somevalue somevalue
selectstatus 3 somevalue somevalue
monitoring 1 somevalue somevalue
Working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
working resolution 4 somevalue somevalue
deferred 1 somevalue somevalue
closed 2 somevalue somevalue
closed 2 somevalue somevalue
What I want to do is on my report to simply total up the field called 'count', for each of the different value types. For example, I would like the report to say:
selectstatus 9
monitoring 1
working resolution 16
deferred 1
closed 4