I have a Dataset1 which has all records.
I have Dataset2 and Dataset3 for Dropdown filteration.
Dataset1 has a query as follows : select * from vw_shoppinghistory where storename =@storename and city = @city
Dataset2 has a query as follows : Select Distinct StoreName from vw_shoppinghistory
Dataset3 has a query as follows : Select distinct city from vw_shoppinghistory where storename = @storename
On selecting store and then the city should pull the records.
I am facing an error as
" When report contains multiple datasets, field references outside of a data region must be contained within aggregate functions which specify a dataset scope "