Changing parameter values in SSRS on SSAS Cube
i working on ssrs using ssas cube. in dimension dim1, have 3 members abc, pqr, xyz in attribute attri1 need create parameter on attri1 parameter values ‘yes’, ‘no’. if select parameter value yes, in report body abc, pqr, xyz data displayed. if select parameter value no, in report body abc , pqr data displayed. need implement on query parameter. appreciated. regards, ramesh
create new dataset following query , use parameter.
select distinct paramvalue (
select 'abc' attri1,'yes' paramvalue
union all
select 'pqr' attri1,'yes' paramvalue
union all
select 'xyz' attri1,'yes' paramvalue
union all
select 'abc' attri1,'no' paramvalue
union all
select 'pqr' attri1,'no' paramvalue
) x
regards, rsingh
SQL Server > SQL Server Reporting Services, Power View
Comments
Post a Comment