I have an SSRS 2014 report with three parameters: @Period (text), @FromDate (date), and @ToDate (date). They work together by first selecting a value from the Period dropdown list (January, February, March etc...). Depending on what you period you choose, the @FromDate and @ToDate parameters change accordingly to reflect your choice. This works well, but the problem arises when you select a new period after having already selected one, as the date parameters do not refresh.
I have been looking at some suggestions and workarounds, but I have yet to find one that deals with two dependent date parameters. Any suggestions?
@FromDate
and@ToDate
parameters are set correctly at runtime. – alejandro zuletaInternal
, so your parameters will be populated only from the period parameter not from UI. But if you have to let user selects dates you will have to create two additional parameters to be Internal and populate them using an expression to determine if use the default values from @Period parameter or the values from the visible date parameters. – alejandro zuleta