Hello,
I am building a Report in MS Visual Studio which gets its data from a cube. This has amongst others a dimension called Player. I want to hand over a parameter 'Name' and receive the number of games the player has played. But I do not get the parameter integrated in the MDX-query I use. I had defined the parameter and in the query, I tried many different things, e.g.
Select
strtomember('@Name')
on 1,
[Measures].[Match Count]
on 0
From [Kicker Manager Data Warehouse]
and instead of strtomember('@Name')
for ex.
[Dimension Player].[@Name]
but nothing works. Would appreciate any help.