Hi Guys,
I developed one report , which displays the data monthly wise.
When user runs the report , report displays the data for previous month. if user selects other date, it displays accordingly.
In addition to this, selected date displays on the report..
Problem is , when user runs the report , default date should display in the same place , where selected date is shown using parameter.
how to fix this, can you please suggest me , in this regard.
Thanx
Inam
Use conditional variables and a conditional block. Use a Boolean variable with the syntax of [SelectedDate] IS NULL.
If the selected date is null, show the block where you display the default date. I don't know what your default date expression is, but you'll need to use a layout calculation or singleton to display the default date.
Quote from: CognoidJay on 14 Sep 2016 12:16:24 PM
Use conditional variables and a conditional block. Use a Boolean variable with the syntax of [SelectedDate] IS NULL.
If the selected date is null, show the block where you display the default date. I don't know what your default date expression is, but you'll need to use a layout calculation or singleton to display the default date.
Thanks..i will check it.