Viewing 15 posts - 1 through 15 (of 80 total)
Using these posts:
http://www.purplefrogsystems.com/blog/2009/11/scope-problems-with-mdx-calculated-members/
I finally got it working with the following code:
...
June 4, 2014 at 5:45 pm
Thank you for the response.
This gives the total of the year, yes, but what if I've filtered to only quarters 1 and 2 in year 2013?
The total is the year,...
June 4, 2014 at 10:13 am
Who wants a dropdown for a date? What the users want is a calendar with min (and possibly max) date restrictions. It's just not possible w/in SSRS.
My 2 cents at...
February 23, 2012 at 2:12 am
As far as I know. Not possible. 🙁
'Work-around' is to create your own aspx front end to pass the params to the report. boo.
February 23, 2012 at 1:46 am
Did you ever find a fix for this? Does it require a server rebuild?
Thanks, Megan
September 8, 2010 at 5:54 am
As far as we have found, there is no way to do custom parameter validation within SSRS. If you find an way, please share.
Thanks, Megan
August 5, 2010 at 3:06 am
Try something like this:
WITH
MEMBER [Measures].[ParameterCaption] AS '[Geography].CURRENTMEMBER.MEMBER_CAPTION'
MEMBER [Measures].[ParameterValue] AS '[Geography].CURRENTMEMBER.UNIQUENAME'
SELECT
{
[Measures].[Results],[Measures].[ParameterCaption],[Measures].[ParameterValue]
} ON 0,
nonempty([Geography].[Region])
on 1
FROM [MyCube]
August 5, 2010 at 3:05 am
still no ideas on how to do this?? 😉
March 16, 2010 at 5:21 pm
Thanks Steve. Do you know if you have to reprocess the entire cube to see this new value? Thanks again. -Megan
January 27, 2010 at 11:41 am
It may be a bit overkill, but we have 2 procedures in place:
1. we have a SSRS development sharepoint site and then we have a subsite for each major report.
a)...
January 4, 2010 at 11:59 am
Use All member and crossjoining sets.
Thanks to Chris Webb for helping me with this!
The answer is:
WITH
SET [TopCustomers] AS TOPCOUNT(nonempty([Customer].[Customer Geography].[City]),10,[Measures].[Internet Order Count])
MEMBER [Customer].[Customer Geography].[OtherCustomers] AS AGGREGATE({EXCEPT([Customer].[Customer Geography].Members, [TopCustomers])})
SELECT
{
[Measures].[Internet...
December 16, 2009 at 3:29 pm
I'm relatively new at MDX too, and I've never tried this specifically, but I think you can create a member using the with statement and use the IIF function to...
September 14, 2009 at 12:35 pm
OMG! I glanced right over that function. THANK YOU.
-M
May 3, 2009 at 10:19 am
Viewing 15 posts - 1 through 15 (of 80 total)