christinetjx
Technical User
I have created a report displaying calls logged to a Helpcenter. The calls are grouped by assignment. Calls closed immediately by the Helpcenter are listed first as 'Closed on Initial'. I use the following formula (from lbass) to get this info:
If isnull ({incidentsa3.assignment}) or {incidentsa3.assignment} = '' then
'Closed on Initial'
else
({incidentsa3.assignment})
That formula works wonderful.
What I would like to do now is filter out other groups that come up in the list. For example in the list below, I would like to completely leave out the groups 'Projects' and 'Future Releases' so they don't show up at all:
Group: # Calls Closed:
Closed on Inital 2359
Development 43
Projects 54
Future Releases 3
Can I do this by elaborating on the original formula mentioned above, or should I create a new formula to do this (there are about 6 assignment groups I want to leave out.) I would greatly appreciate it if you could show me how to do this.
Christine
If isnull ({incidentsa3.assignment}) or {incidentsa3.assignment} = '' then
'Closed on Initial'
else
({incidentsa3.assignment})
That formula works wonderful.
What I would like to do now is filter out other groups that come up in the list. For example in the list below, I would like to completely leave out the groups 'Projects' and 'Future Releases' so they don't show up at all:
Group: # Calls Closed:
Closed on Inital 2359
Development 43
Projects 54
Future Releases 3
Can I do this by elaborating on the original formula mentioned above, or should I create a new formula to do this (there are about 6 assignment groups I want to leave out.) I would greatly appreciate it if you could show me how to do this.
Christine