ISSUE
I'm trying to filter my report with
1.Date range, 2.area and 3.Status
I got the answer for the combination:
1. any date range - all status - all area
2. any date range - all status - particular area
3. any date range - particular status - all area
but i coudn't get the correct answer for
4. any date range - particular status - particular area
It gives the result as (ie all status - particular area)
The formula I'm using is
(
{?Date} ={Q.Date}
)
and
if ( {?area} <> "ALL"
then
{?area} = {Q.area}
else if ({?area} = "ALL"
then
true
and
if ({?Status}<>"ALL" ) then
{?Status}={Q.Status}
else if ({?Status} = "ALL"
then
true
please give me suggestion on this problem.
thanks
MK
I'm trying to filter my report with
1.Date range, 2.area and 3.Status
I got the answer for the combination:
1. any date range - all status - all area
2. any date range - all status - particular area
3. any date range - particular status - all area
but i coudn't get the correct answer for
4. any date range - particular status - particular area
It gives the result as (ie all status - particular area)
The formula I'm using is
(
{?Date} ={Q.Date}
)
and
if ( {?area} <> "ALL"
{?area} = {Q.area}
else if ({?area} = "ALL"
true
and
if ({?Status}<>"ALL" ) then
{?Status}={Q.Status}
else if ({?Status} = "ALL"
true
please give me suggestion on this problem.
thanks
MK