I need to "select *", on just one axis with a "where" slicer as well.
Thanks in advance,
Alex
select * in MDX translates to .MEMBERS.
For example "select * from sales" would tralslate to
select
[Measures].MEMBERS on columns,
[Education Level].MEMBERS on rows
from Sales
Regards,
Igor Krupitsky
www.ReportPortal.com
"Alex" <fwd_new...@hotmail.com> wrote in message
news:1116360548.8...@g47g2000cwa.googlegroups.com...
E.G. -
"select
[Measures].Members on columns,
{[Date].Members, [Product].members} on rows
from [KPI Warehouse]"
select
[Measures].MEMBERS on columns,
{{[Product].[Product Family].MEMBERS} * {[Time].[Year].MEMBERS}} on rows
from Warehouse
Regards,
Igor Krupitsky
www.ReportPortal.com
"Alex" <fwd_new...@hotmail.com> wrote in message
news:1116447206.8...@f14g2000cwb.googlegroups.com...