I am working with the CR version that ships with Visual studio .NET. I think its 8.1
I have a report that I need to be able to filter depending on a user supplied selection.
The report gives details of orders,
ordinarily it lists all ordernumbers. I have a table that has a subset of these order numbers. If the user selects a option on a web page ("show only subset"), I want the report to filter and show only the ordernumbers that exist in this subset table else show all ordernumbers.
(basically I need to add a where clause like
" where ordernumber in (select ordernumber from tbl_subsetOrderNumbers" )
Is this possible? Currently I have made 2 compeletly seperate reports and the correct one gets called depending on what the user selects, but it seems such a waste when I just need a small filter
I have a report that I need to be able to filter depending on a user supplied selection.
The report gives details of orders,
ordinarily it lists all ordernumbers. I have a table that has a subset of these order numbers. If the user selects a option on a web page ("show only subset"), I want the report to filter and show only the ordernumbers that exist in this subset table else show all ordernumbers.
(basically I need to add a where clause like
" where ordernumber in (select ordernumber from tbl_subsetOrderNumbers" )
Is this possible? Currently I have made 2 compeletly seperate reports and the correct one gets called depending on what the user selects, but it seems such a waste when I just need a small filter