Sorry for very basic question,
I have SSRS report which takes value of parameter dynamically and creates MDX query.
Now, I have that MDX query and I want to run in SSMS or MDX studio. But I am not sure how to replace the parameter value.
For example:
WITH MEMBER [Measures].[HC Threshold] AS Val(strtomember(@HC_Threshold).Name), FORMAT_STRING="$#,0"
And I found HC_Threshold dimension, which looks like
based on this, how do I modify 'Val(strtomember(@HC_Threshold).Name), FORMAT_STRING="$#,0"', if user selects 75000.
Let me know if you need any more information, I am completely new with SSRS and Parameterized queries in MDX.
Thanks