i have one prompt page consisting of 2value prompt cascaded together(1.country 2.state).. its output consists of 2 text item like report1 and report2..if i click on report1 report1 page will executs and if i click on report2 then report2 page will executes..before that u have to create 2 report pages also...
how?
Have you tried using render variables? They should allow you to only show the second page if you select Page 2 in your prompt.
Nope..can u explain briefly
hi,
select string variable from conditional explorer and use below condition....
case
when (ParamDisplayValue('parameter1') = ( 'report1')
THEN 'report1'
ParamDisplayValue('parameter2') = ( 'report2')
THEN 'report2'
else
end
cheers..........
thanks..but easy way is to going with drill through