Viewing 15 posts - 91 through 105 (of 113 total)
Hi Iain,
"I am guessing that your solution is to create a calculated member within the query?" Yes that what I was doing?
What are you trying to get - is this...
October 23, 2012 at 1:33 am
Try
Avg(
{[Time].[Month].CurrentMember.Lag(1):[Time].[Month].CurrentMember},
[Measures].[Period Demand])
Mack
October 23, 2012 at 1:29 am
Are you changing the correct ODBC driver? Have you created a user DSN and are changing that? Do do you have 32 & 64 bit versions of the ODBC...
October 22, 2012 at 4:52 am
Hi Iain,
Try this sort of thing - In my example I have created a memeber that would be your calulation (in this case % European clients) and then unioned that...
October 22, 2012 at 4:31 am
Sounds like he doesn't have access to the cube or cannot connect to your machine
Have you granted them access to the cube?
If you have, did you use localhost...
October 18, 2012 at 8:05 am
You can use the HAVING function
SELECT NON EMPTY { [Measures].[Net Revenue] } ON COLUMNS ,
NON EMPTY { DESCENDANTS( [Date].[Date Hierarchy].[Year].&[2012], [Date].[Date Hierarchy].[Month] ) }
HAVING [Measures].[Net Revenue] > 100000
ON ROWS...
October 15, 2012 at 3:17 am
Use a measure expression or feed this in pre-calculated into the cube
Mack
October 12, 2012 at 9:42 am
I experienced this when we move to use XLCubed (an excellent OLAP tool BTW).
What I did was alter a couple of SSAS setting
I increased the # of...
October 12, 2012 at 9:10 am
Is this not working for September Days 1 to 10 or are you looking for an aggregated view of September Days 1 to 10?
The query looks like it...
October 12, 2012 at 8:43 am
Are you wanting to see dimensions in a particular order or want to custom order members of a dimension?
Custom ordering members of a dimension is possible
Custom ordering the dimensions is...
October 12, 2012 at 8:24 am
I guess the issue with the MDX I posted is that you are querying the revenue without specifying a date
The following MDX may work (although I have syntax checked it)
select...
October 12, 2012 at 8:19 am
ahhhhh that issues rings a bell :hehe: I think it's specific to BIDS tho
October 12, 2012 at 8:13 am
I think your date needs to be associated with the measure like below
select [Measures].[Net Sales Value] on columns,
toppercent({[Customer Information].[Customer Acc].[Person No].members},20,Sum(tail([Order Date].[Order Date].[Month],36) ,[Measures].[Net Sales Value])) on rows
from marketingcube
Lemme know...
October 12, 2012 at 8:10 am
Viewing 15 posts - 91 through 105 (of 113 total)