I have a SQL Server 2005 Reporting Services report with three parameters I'd like to implement some kind of dependency relationship between.
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?
This might not be the answer you are looking for, but I solved this (and other) problems by embedding the report into a web page (using the ReportViewer control). I use AJAX to cascade values across dropdowns in ways that would be exceedingly difficult in Reporting Services, and then pass the parameters to the reports in the codebehind.
I've found this to be much easier, as I'm not constrained with how I create my input controls. YMMV, though.