Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameters

Status
Not open for further replies.
Jul 21, 2011
28
0
0
PK
Report Builder 3

i'm currently creating a report using Analysis Services cubes and so i'm creating the report using the mdx query designer. I have two data sets, one looks at premium splits by fiscal calendar and the other is policy count split by entry date. I wish to create one parameter so that it can utilise both the fiscal calendar and the entry date, ie the user enter "June 11" and it brings back the data from both queries for June 11. However i have no clue how to do this? (i'm sorry but i'm new to mdx query designer) Can anyone point me in the right direction?
 
You edit the text of your MDX query to include something like:

Code:
WHERE (
StrToMember(@rpDateParameter)
)

You then map a parameter called rpDateParameter to an SSRS parameter called @rpDateParameter.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top