I have a SQL Server 2005 Reporting Services report with three parameters I'd like to implement some kind of dependency relationship between.
- The first parameter is DateRange which is a drop down with various numbers of days back to make a date range from the present day. It will have a "Custom" value which will be used to flag when the Start and End DateTime parameters should be used instead.
- The second and third would be datetime parameters where the user enters some kind of valid DateTime string representation or clicks the Calendar box and selects that way, ie "02/20/2009"
The problem I have is that all the material I've stumbled across on dependent parameters shows cascading relationships where there is a drop down based on a query determining the next drop down.
How can you cascade from a dropdown, that uses a query, to a non-queried DateTime Textbox?