I am using Crystal XI against MySQL database.
I have multiple reports that show daily call statistics from our recorded calls database.
There is a field in the database ('Agentid') that shows all extensions involved in a phone call. The data from this field can look like the following:
120 -> Extension 120 was the only part of the call
120:125 -> 120 transferred call to 125
120:124:130 -> 120 transfer to 124 transfer to 130
I run different phone reports on daily/monthly basis based on Division of the company. However there is no division field or even specific extension extension field in the recorded call database.
To get a report for a particular division I end up running a select expert that says:
({Agentid} like "*130" or {Agentid} like "*131" or {Agentid} like "*132")
My problem is I always forget to go back and change the select expert when the members of the division change.
I've been playing around with setting up a simple access table with three fields "Name", "Extension", "Division" so that in the phone report I could just state Division = "XYZ" and that would be that. But I can't link Extension ("121") to Agentid ("121" or "134:121").
Any suggestions are appreciated.
I have multiple reports that show daily call statistics from our recorded calls database.
There is a field in the database ('Agentid') that shows all extensions involved in a phone call. The data from this field can look like the following:
120 -> Extension 120 was the only part of the call
120:125 -> 120 transferred call to 125
120:124:130 -> 120 transfer to 124 transfer to 130
I run different phone reports on daily/monthly basis based on Division of the company. However there is no division field or even specific extension extension field in the recorded call database.
To get a report for a particular division I end up running a select expert that says:
({Agentid} like "*130" or {Agentid} like "*131" or {Agentid} like "*132")
My problem is I always forget to go back and change the select expert when the members of the division change.
I've been playing around with setting up a simple access table with three fields "Name", "Extension", "Division" so that in the phone report I could just state Division = "XYZ" and that would be that. But I can't link Extension ("121") to Agentid ("121" or "134:121").
Any suggestions are appreciated.