Hi,
I'm extremly rusty on Crystal and I need to create a report for our VP ASAP so I'm in a panic and not having any luck.
I have a table called Calllog
The fields I need in the report are CallLog.ClosedDate and CallLog.RecvdDate.
All I need is a count of records with a CallLog.ClosedDate between / in a weeks time. (Date - Parameter)
And a count of records with a CallLog.RecvdDate between / in a weeks time. (Date - Parameter)
I have tried a crosstab report but the resulting numbers are the same for both fields which is incorrect.
If I query the database with the following I get the numbers I want.
Select Count (*)As CallsIn from heat.calllog
where Recvddate between '2007-05-05' and '2007-06-05'
Result = 1088
Select Count (*)As CallsClosed from heat.calllog
where closedDate between '2007-05-05' and '2007-06-05'
Result = 668
Now when I build my crosstab report the result is 246 for both.
Where / How should I start????
Thanks
Janet
I'm extremly rusty on Crystal and I need to create a report for our VP ASAP so I'm in a panic and not having any luck.
I have a table called Calllog
The fields I need in the report are CallLog.ClosedDate and CallLog.RecvdDate.
All I need is a count of records with a CallLog.ClosedDate between / in a weeks time. (Date - Parameter)
And a count of records with a CallLog.RecvdDate between / in a weeks time. (Date - Parameter)
I have tried a crosstab report but the resulting numbers are the same for both fields which is incorrect.
If I query the database with the following I get the numbers I want.
Select Count (*)As CallsIn from heat.calllog
where Recvddate between '2007-05-05' and '2007-06-05'
Result = 1088
Select Count (*)As CallsClosed from heat.calllog
where closedDate between '2007-05-05' and '2007-06-05'
Result = 668
Now when I build my crosstab report the result is 246 for both.
Where / How should I start????
Thanks
Janet