Viewing 15 posts - 1 through 15 (of 24 total)
Does Power View add-in against multidimensional SSAS work with SharePoint 2010?
thanks
May 21, 2013 at 5:07 am
Use this to get the last day of the month
DECLARE @date DATETIME
SELECT @date='2011/05/10'
SELECT DATEADD(DD, -1, DATEADD(MM, DATEDIFF(MM,0,@date)+1,0))
May 10, 2011 at 7:34 am
Now you can use the following MDX and pass the CurrentMember reference to calculate YTD
WITH MEMBER [Measures].[YearToDate] AS 'SUM(YTD([Order Date].[CalendarHierarchy].CurrentMember), [Measures].[Sales Amount])'
SELECT {[Measures].[Sales Amount], [Measures].[YearToDate]} ON 0,
[Order Date].[CalendarHierarchy].[Year Month Day...
October 23, 2010 at 1:27 pm
What will it do with a composite key in that case?
It will give an error
October 22, 2010 at 1:57 pm
set the key as user_count, PK (in that order). Then if you sort by key, it should sort by user_count and then by key. So user_count=2 will show up before...
October 22, 2010 at 1:49 pm
What happens when you try what I had suggested?
October 22, 2010 at 12:40 pm
The KeyColumns has to be set to a composite value of user_count and the PK column
Then you can set the OrderBy property to Key and that should sort the data...
October 22, 2010 at 7:38 am
Is your date dimension setup with the Type on column properties mapped to Year/Month/Day, etc?
October 21, 2010 at 3:12 pm
You cannot use SCOPE statement in SSMS
October 21, 2010 at 3:08 pm
C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe
October 21, 2010 at 3:06 pm
it works in ROLAP because the data is not processed, only the structure and indexes are.
Try processing the dimensions first, and then process the cube.
October 21, 2010 at 3:04 pm
Did you query the cube in Management Studio using MDX or the fact table in the database using SQL?
October 21, 2010 at 3:02 pm
September 29, 2010 at 12:58 pm
You have to SUM from the first member to the currentmember at the date level in Time dimension.
Try this:
WITH MEMBER Measures.[Stock Level] AS
SUM([Date].[Hierarchy].[Date].members(0):ClosingPeriod([Date].[Hierarchy].[Date]),
...
September 28, 2010 at 1:13 pm
You don't need to filter your fact table - create a calculated measure to add up values from the beginning of the year to the current week and that should...
September 28, 2010 at 11:48 am
Viewing 15 posts - 1 through 15 (of 24 total)