Hi
I have a monthly report which counts the number of service calls logged by each individual each month (runs as Last Full Month).
Some clients who receive this report are only interested in anyone who logs more than 5 calls, some more than 10 others more than 25 etc. I have a parameter to select the CompanyID and then I have a formula like so:
if {CCS_JN_Service_Desk_TM.Company ID} = '1234'
then (DistinctCount ({CCS_JN_Service_Desk_TM.Call Number}, {CCS_JN_Service_Desk_TM.Contact Name})) >= 6
else if {CCS_JN_Service_Desk_TM.Company ID} = '4567'
then (DistinctCount ({CCS_JN_Service_Desk_TM.Call Number}, {CCS_JN_Service_Desk_TM.Contact Name})) >= 25
and I could add a new line for each customers different requirements. But 2 things bug me:
1) If I chart the results I get everyone for that client not just the people with >= 6 or >= 25 calls (the report header details are correct but the chart charts everyone)
2) There must be a better way of selecting - how could I have an additional parameter which prompts for the number of calls to limt the data to as well as the company ID?
I have a monthly report which counts the number of service calls logged by each individual each month (runs as Last Full Month).
Some clients who receive this report are only interested in anyone who logs more than 5 calls, some more than 10 others more than 25 etc. I have a parameter to select the CompanyID and then I have a formula like so:
if {CCS_JN_Service_Desk_TM.Company ID} = '1234'
then (DistinctCount ({CCS_JN_Service_Desk_TM.Call Number}, {CCS_JN_Service_Desk_TM.Contact Name})) >= 6
else if {CCS_JN_Service_Desk_TM.Company ID} = '4567'
then (DistinctCount ({CCS_JN_Service_Desk_TM.Call Number}, {CCS_JN_Service_Desk_TM.Contact Name})) >= 25
and I could add a new line for each customers different requirements. But 2 things bug me:
1) If I chart the results I get everyone for that client not just the people with >= 6 or >= 25 calls (the report header details are correct but the chart charts everyone)
2) There must be a better way of selecting - how could I have an additional parameter which prompts for the number of calls to limt the data to as well as the company ID?