Viewing 15 posts - 376 through 390 (of 596 total)
You can do this fairly easily in Excel itself.....Connect to the cube and create a pivot table with your required dimensions. Pick an arbitrary measure and then right click on...
September 22, 2014 at 2:21 am
I don't know if there's a way to parse xml column in SSAS directly, but you could create a linked server to your AS instance on a SQL instance and...
September 19, 2014 at 7:17 am
You used the wizard didn't you? 😀 I think what's happened is that the wizard looks at your dsv and tries to determine what are fact tables (measure groups in...
September 19, 2014 at 3:13 am
You need to create a set of the two members to get the intersect and then sum it. Here's an example on adventure works for bike sales in the UK:
WITH...
September 19, 2014 at 2:23 am
You could achieve this if you used an expression in your dataset and returned the appropriate columns based on the parameter. There's more info on an implimentation of that sort...
September 17, 2014 at 9:21 am
You can have one dataset and multiple charts, no duplicate code "galore" there. It's just a suggestion for a workaround, I have no idea of your individual situation so don't...
September 17, 2014 at 9:03 am
Yeah SSRS is a bit tricky in that respect.
I suppose what you could do is have three charts based on the different columns and then show/hide them based on...
September 17, 2014 at 8:49 am
Using LastPeriods with a parameter for different levels will give you different result sets depending on the level.
Consider the following two queries:
SELECT
[Measures].[Reseller Sales Amount] ON 0,
LASTPERIODS(2,[Date].[Fiscal].[Fiscal Quarter].&[2008]&[4]) ON 1
FROM
[Adventure...
September 17, 2014 at 8:10 am
It's a bit of a shift in thinking when you're used to something else. I really cannot recommend more to read The Data Warehouse Toolkit by Kimball. It will make...
September 17, 2014 at 4:23 am
Guitar_player (9/16/2014)
September 16, 2014 at 4:23 am
Guitar_player (9/15/2014)
Yes i think i am nearer but i am struck somewhere like " .Parent.Children " was used on a Member.
As in my scenario the...
September 16, 2014 at 3:23 am
Data can be taken from any database source - it's generally a good idea for it to be a data warehouse but it doesn't have to be. ROLAP is a...
September 16, 2014 at 3:13 am
Yeah, in out of the box AdventureWorks the Calendar hierarchy is Year>Quarter>Month>Date. For this example I added in week to make it Year>Quarter>Month>Week>Date.
The fact that you get the entire...
September 15, 2014 at 8:47 am
SQLSACT (9/15/2014)
Am I correct in that ROLAP is when your data warehouse is stored as normal Relational SQL Database within your instance and MOLAP is when your data warehouse is...
September 15, 2014 at 8:29 am
You could do this using .Parent.Children. So you are saying "for this date, show me the parent week and then show me the children of that parent week". For example,...
September 15, 2014 at 8:08 am
Viewing 15 posts - 376 through 390 (of 596 total)