Hi,
I have a prompt to select a report by Year. So it always opens with the current year I put the MUN of the current year into the Default selection of the Prompt properties. All works ok.
However, in the Report Title I have a ParamDisplay to show the prompt selection, with the default selection in use I get the whole of the MUN displayed in the title rather than just 2015. Is there any solution to this that anyone has resolved?
thanks
Mike
It might be a typo, but you probably want: ParamDisplayValue('yourparametername')
I see the MUN when I use ParamValue().
Hi
Yes I have been using ParamDisplayValue('Parameter1')
It's a bit of a bug/feature.
The prompt has a default 'use value' but there's no way to set a default 'display value'.
The best workaround I know is to but the paramdisplayvalue function into an 'if' statement.
So,
if paramvalue = 'yourdefaultvalue'
then defaultdisplavalue
else paramdisplayvalue(?param?)
Thanks Robl
I used this method