HI,
We are using 10 parameters in a report.
say, State, Major, School...
The end user want to select,
State - CA, IL, AZ, AB, IO
Major - M1, M2, M3
School - S1, S2, S3, S4
all other parameters are ALL.
They need the output as the combimation of the selected vaules.(not other then the selected one)
ie
xxx 111 CA M1 S3
yyy 222 CA M3 S2
iii 533 IL M1 S4
ttt 221 AZ M2 S1
sss 453 CA M3 S3
like this.
What i did is I select the option "Allow Mutiple values" at the time of creating the parameter.
And in the formula
(
if ({?state} <>"ALL"
then
{?state}={tab1.state}
else
true
)
and
(
if ({?school} <>"ALL"
then
{?school}={tab2.school}
else
true
)
and
.....
I know, I'm doing somthing worng over here. So, expecting someone can help on fixing the problem.
Thanks in adv.
Thanks,
MK
We are using 10 parameters in a report.
say, State, Major, School...
The end user want to select,
State - CA, IL, AZ, AB, IO
Major - M1, M2, M3
School - S1, S2, S3, S4
all other parameters are ALL.
They need the output as the combimation of the selected vaules.(not other then the selected one)
ie
xxx 111 CA M1 S3
yyy 222 CA M3 S2
iii 533 IL M1 S4
ttt 221 AZ M2 S1
sss 453 CA M3 S3
like this.
What i did is I select the option "Allow Mutiple values" at the time of creating the parameter.
And in the formula
(
if ({?state} <>"ALL"
{?state}={tab1.state}
else
true
)
and
(
if ({?school} <>"ALL"
{?school}={tab2.school}
else
true
)
and
.....
I know, I'm doing somthing worng over here. So, expecting someone can help on fixing the problem.
Thanks in adv.
Thanks,
MK