I have trouble to display parameter. I want to drop down list of State abbreviations where the policy effective date is between StartDate and End Date.
I have three parameters: StateAbbreviate, StartDate, EndDate.
In SQL, I created procedure with the following conditions for parameter:
rds.StateAbbreviate = @StateAbbreviate and PolicyEffectiveDate Between @StartDate and @EndDate
rds.StateAbbreviate is from different view.
In Report Builder, I also have these three parameters. Everything is working fine when I just type the state code. When I tried to create drop down list using "Available Values" (Report Parameter Properties) I got this error:
The report parameter ‘StateAbbreviate’ has a DefaultValue or a ValidValue that depends on the report parameter “StateAbbreviate”. Forward dependencies are not valid.