AnnieRider
MIS
I have a report that has two parameters, one to select the client record (a Non Query with null default) into which Users will type the Client_Ref.
The other selects required history types the User wants to view for that Client, I have set this to MultiValue with no default.
My SQL query is
WHERE (dbo.CR_CLIENTS.Client_Ref = @Client_Ref) AND (dbo.CR_HISTORY.HistoryType_Ref IN (@HistoryTypes))
I have included in my report the reference table that denotes the Description for each History Type and I want the Users to be able to pick from the description rather than the ref.
If I do this using From Query I get the error message
The report parameter 'Histories' has a DefaultValue or a ValidValue that depends on the report parameter "Histories". Forward dependencies are not valid.
It works if I use Non-Queried and type in the info, but I'd like to get the problem fixed as lots of our reports are run like this and I'd rather not have to type in the parameter data for all of them (some of our reference tables are quite big)
Thanks
Annie
The other selects required history types the User wants to view for that Client, I have set this to MultiValue with no default.
My SQL query is
WHERE (dbo.CR_CLIENTS.Client_Ref = @Client_Ref) AND (dbo.CR_HISTORY.HistoryType_Ref IN (@HistoryTypes))
I have included in my report the reference table that denotes the Description for each History Type and I want the Users to be able to pick from the description rather than the ref.
If I do this using From Query I get the error message
The report parameter 'Histories' has a DefaultValue or a ValidValue that depends on the report parameter "Histories". Forward dependencies are not valid.
It works if I use Non-Queried and type in the info, but I'd like to get the problem fixed as lots of our reports are run like this and I'd rather not have to type in the parameter data for all of them (some of our reference tables are quite big)
Thanks
Annie