bloomlight
IS-IT--Management
How to put the following code to Crystal Report formula screen?
{StartDate <= '01/31/2010' and DischargeDate >= '01/01/2010'} or {StartDate <= '01/31/2010' and DischargeDate is null)
When using this code on SQL server to generate a report, it works well. But when I try it on crystal report, the report only shows client who discharged. It seems that only the first part the code gets executed. I need a report which will show me the active clients during the month of Jan 2010. How can do that? Thanks.
{StartDate <= '01/31/2010' and DischargeDate >= '01/01/2010'} or {StartDate <= '01/31/2010' and DischargeDate is null)
When using this code on SQL server to generate a report, it works well. But when I try it on crystal report, the report only shows client who discharged. It seems that only the first part the code gets executed. I need a report which will show me the active clients during the month of Jan 2010. How can do that? Thanks.