0
このフィルタ条件を使用するパラメータ(@Productcategoryおよび@PriceRange)にデータセットをバインドする方法や、このフィルタを作成する別の方法を教えてください。パラメータへのデータセットのバインド
提供としてあなたは(あなたがSQLServerのデータ・ソースを照会していると仮定)WHERE句を含むクエリを最初からレポートを作成する場合はエマ
WHERE ((ProductCategory.Name = @ProductCategory OR
(@ProductCategory = 'All Bike Related' AND
ProductCategory.Name IN ('Bikes', 'Components')) OR
(@ProductCategory ='All')
) AND
((@PriceRange = 'Less than 50' AND ListPrice < 50) OR
(@PriceRange ='50 to 99' AND ListPrice BETWEEN 50 AND 99) OR
(@PriceRange ='100 to 499' AND ListPrice BETWEEN 100 AND 499) OR
(@PriceRange ='500 and higher 'AND ListPrice >=500) OR
(@PriceRange = 'All')
)
)