Hi,
We have two reports, one is prompted by country and the other is prompted by City. But both the reports have the same information.
We need to combine the reports to reduce the maintenance time for these reports by making a single report out of them.
We are trying to create a new prompt object which is unique to both the reports. That means basing on the level selected by the end user we want to dynamically set the prompt but it doesn't work.
Here is the sample:
CASE WHEN (@Prompt('Select a Level','A',{'1','2'},MONO,CONSTRAINED)=1) THEN @prompt('Enter Country') WHEN (@Prompt('Select a Level','A',{'1','2'},MONO,CONSTRAINED)=2) THEN @prompt('Enter City') END
Any ideas??
Thanks in advance,
Shoot
We have two reports, one is prompted by country and the other is prompted by City. But both the reports have the same information.
We need to combine the reports to reduce the maintenance time for these reports by making a single report out of them.
We are trying to create a new prompt object which is unique to both the reports. That means basing on the level selected by the end user we want to dynamically set the prompt but it doesn't work.
Here is the sample:
CASE WHEN (@Prompt('Select a Level','A',{'1','2'},MONO,CONSTRAINED)=1) THEN @prompt('Enter Country') WHEN (@Prompt('Select a Level','A',{'1','2'},MONO,CONSTRAINED)=2) THEN @prompt('Enter City') END
Any ideas??
Thanks in advance,
Shoot