Multidimensional Expressions (MDX) is a query language for OLAP databases. It was developed by Microsoft but has later gained widespread support from other OLAP vendors.
0
votes
0answers
5 views
How to use DRILLTHROUGH with Mondrian OLAP?
How to I use DRILLTHROUGH queries with Mondrian? For example, this MDX query
DRILLTHROUGH
SELECT
measures.MEMBERS ON 0
FROM
events
generates an exception:
java.lang.ClassCastException: ...
0
votes
0answers
23 views
Different results in MDX using aggregate function in SQL 2008 R2 and SQL 2012
I have a problem in SSAS where a strange behavior happen. I have a cube in prodution, but, for simulation de problem a created a small cube for isolate the problem. I created a small cube that ...
0
votes
0answers
6 views
Doing the crossjoin with aggregate function in mdx
I have three dimensions in my Cube - Month , Products and Services.My requirement is to find the sum of top five products based on months dimension and then I have to find the different services for ...
0
votes
1answer
10 views
Parametrization of MDX query in SSRS
I have such query in MDX:
SELECT NON EMPTY
{
[Measures].[M1]
, [Measures].[M2]
, [Measures].[M3]
} ON COLUMNS,
NON EMPTY
{
[DimensionName].[MemeberName].&[2008/1]
} ON ROWS
FROM [Cube]
...
0
votes
1answer
16 views
MDX Filter Unknown from list of states / provinces also removes provinces
I am trying to exclude Unknown from a dimension [Ship To State] that contains Provinces and States.
The first expression throws out Provinces as well as States, and I don't know why -
this mdx lists ...
0
votes
0answers
16 views
How to calculate margin percent in MDX
I have dimension which divides the single fact value by members.
Ie. ([Dim].[Member1], value), ([Dim].[Member2], value) ..
Can i calculate dimension members margin with this single value?
0
votes
1answer
18 views
How do I cast a number to a set
I think this is a bit of a beginner MDX question. I'm trying to get the following as a calculated member:
Max(Min([Measures].[My Data] / 0.2, 1), 0)
I get #VALUE! as the result, I presume because ...
0
votes
0answers
8 views
A complex ragged hierarchy and generic queries in MDX with compound keys
Dimension is made with collection of key column attributes so:
...
hierarchylevel2key = level2attribute + level1attribute
hierarchylevel1key = level1attribute
...
Hierarchy has many levels, so ...
0
votes
0answers
17 views
Error adding new column
I'm trying to add an "account subcategory" column to my report using the query builder.
I added the column and got the error message:
"An MDX expression was expected. An empty expression was ...
0
votes
1answer
19 views
MDX for finding the time at which the the max value occured
I am new to MDX and I am trying to find a way to write it in such a way that I can get the date and time value from my datetime dimension of when a measure's max and min values occured. Like I found ...
0
votes
0answers
44 views
+150
Dimension hierarchy not showing all data
I have a users dimension, which represents the hierarchy of many shops. For instance, shops are split into Country - > Region -> Town/Village - > Actual Shop. So when you look at it from a hierarchy ...
0
votes
0answers
21 views
Can't create own cube on Saiku
I would like to create cube with connection to MS SQL Server 2012. I downloaded Saiku with Foodmart DB which runs successfully. Currently, I have edited schema file to be my own data. Also, I changed ...
0
votes
0answers
17 views
MDX filter on 2 fact table attributes
I'm new to MDX (my background is SQL).
I'm working on a SSAS project where I have a fact table that contains date column and another attribute InscriptionYear that stores a year as an integer. I have ...
3
votes
0answers
39 views
R clients to OLAP MDX servers
Has anyone tried to access an OLAP server offering a XMLA API (such as Mondrian) from R?
I'd love to run MDX queries from R against Mondrian and retrieve result sets.
Tnks!
0
votes
0answers
35 views
SQL MDX Query: range of dates
I have a Cube with a dimension date and I want to query this:
WITH
MEMBER [Measures].[MyMeasure] AS(
SUM((
[Measures].[Count],
[DimensionState].[Active],
...
0
votes
1answer
18 views
MDX Calculate SUm at a fixed level in hierarchy
I Have a hieracy Defined a Level1 to Level5 and beneath that an Id.
I would like to create a calculated member that always makes the sum at the Level4.
currentMember.Parent works at Level5 but not at ...
1
vote
1answer
52 views
Last non-empty child over period using MDX
[EDIT: Example was not entirely correct]
I've been pulling my hair out on this MDX issue...
I am making a cube concerning billing.
I have 2 (relevant) dimensions: budgetbill and month
And one ...
0
votes
0answers
24 views
SUM YTD calculation differ in SSRS compared to SSMS
I am trying to calculate the SUM & YTD but something goes wrong then moving the query to SSRS. I works fine in SSMS:
with member
[Measures].[YTD] as
aggregate(YTD([Dim ...
0
votes
0answers
31 views
Openi Plugin for Pentaho not working with mondrian roles
I have a mondrian schema file with Role configuration, restricting the role only for Central region.
<Role name="Central">
<SchemaGrant access="all">
<CubeGrant cube="Quadrant ...
0
votes
0answers
26 views
SSAS 2008R2 MDX Script
I have a problem with a mdx script ,I'm trying to aggregate two sets using the SUM function
Basically, I have 2 calculated member that will give me my date range window
Members in mdx script are as ...
0
votes
1answer
16 views
MDX: get attribute from a slowly changing dimension in a cell
I need to build a report that shows day-to-day changes in the cube. E.g. for account we show the balance on day X and balance on day Y. I achieve it with something like this:
WITH
MEMBER OldBalance ...
0
votes
2answers
24 views
MDX: efficient way to filter tuples where particular columns are not empty?
Suppose I have an MDX query like this:
SELECT Measure1, Measure2, Measure3 ON COLUMNS
[Region].[Region].[Region] ON ROWS
FROM TheCube
If I wanted to exclude rows where ALL THREE measures are empty, I ...
0
votes
0answers
15 views
MDX parameter drop down not working in Sharepoint inegrated mode
Hi I have an MDX report there is a parameter and every time a user sets up a subscription, the next day after the cube build this parameter is causing the subscription to fail. The error that I see ...
0
votes
0answers
24 views
How to recalculate measure based on filtered values
I am a newbie in SSAS, I have encountered a minor issues in cube and I cant solve it in many days
Please help me this, I very appreciate your ideas.
My cube has a measure that shows the percentage.
...
0
votes
0answers
41 views
MDX SUM function and NULL values
I'm trying to create some reports for Team Foundation Server 2010 using underlying SQL Server 2008 Analysis Services database. The cube 'Team System' is the one that comes with TFS 2010 Reporting.
My ...
0
votes
0answers
40 views
MDX syntax to get ID of a hierarchical value
I'm trying to create a dimension to obtain the ID of the Current Member of a hierarchical structure Date.
E.g.: I need the ID of the selected value in the filter March-2013.
The syntax I've tried ...
0
votes
1answer
67 views
Performancepoint cascading filter connection formula in MDX
I have dimension with hierarchy A - B and a time dimension.
I have made 3 different filters from that dimension in Performancepoint 2010, to use as cascading filters.
Cascading works fine, but ...
0
votes
1answer
26 views
Authorization in Pentaho
Is it possible to show the reports filtered by a field (say location) for a user in pentaho?
For eg:
UserA manages RegionA
UserB manages RegionB
UserAB manages RegionA and RegionB
When a user log ...
0
votes
1answer
36 views
What does this mdx mean
I know the end result of this MDX, basically it will SUM the Amount measure across all previous Periods in the Calendar Hierarchy inclusive of the current period.
SUM({null:[Date].[Calendar ...
0
votes
0answers
35 views
Simple grid from SSAS cube using MDX command
is there a better way to display simple grid (looking basically like SQL select statement) from SSAS cube using MDX command instead of using this Drillhrough workaround?
Here is what I've been using ...
0
votes
0answers
44 views
Why is Mondrian pre-aggegating before calculating Average?
I have a super-simple analyzer report, where all I'm doing is calculating the average of a measure. In the schema, it's default aggregation is AVERAGE. The only other aspect of the report is a filter ...
0
votes
0answers
53 views
Roles and Hierarchies in SSAS
I'm having an issue with security on an Analysis Services cube.
I have a dimension, that I need to restrict access to, based on a number of secured fields.
The dimension (Animals, for example) has 5 ...
0
votes
1answer
45 views
Getting error when executing sql SP with MDX query
I am executing MDX query in sql server 2008 stored procedure with openquery.
I jst followed the steps viewed in a website. When i executing the query like below its working fine, but with stored ...
0
votes
1answer
51 views
Sum of products (multiplication) in MDX
I have an MDX query like this one:
with
member [Measures].[Currency] as [Currency].[Code].Currentmember.Member_Key
member [Measures].[Date] as [Time].[Date].Currentmember.Member_Key
member ...
0
votes
0answers
37 views
YTD distinct count mdx
I am trying to make a calculated field to count distinct policies for some period, YTD in this case.
From Fact table I created new measure: I clicked on Fact_Invoice table, set Usage to distinct and ...
0
votes
1answer
28 views
SSAS MDX get the number of items that move from one dimensionmember to anther
We've implemented a life-time-cycle for items. For this we have an Item dimension, an Phase dimension, a Date dimension and a fact table that assigns an item to a phase per date resulting in a ...
0
votes
1answer
72 views
How to make a 100% stacked Column Chart in Report Builder 3.0 with one value?
I am using Report Builder 3.0 for a Report having a 100% Stacked column chart.
I have a values for different dates, now i want to make a column chart where the maximum value would denote 100% in ...
0
votes
0answers
75 views
MDX - Calculate grand total while using IIF
I am trying to use IIF to include some dimension/attributes in a calculation. I am able to filter the dimensions, but the measures dont calculate the Grand Total. Below is the function i am using. (I ...
1
vote
2answers
27 views
Why does explicitly referencing a hierarchy remove the error for “different dimensionality”
I get the SSAS error "Two sets specified in the function have different dimensionality".
I'm actually using same dimensions, the same hierarchy (implicitly), in one set I'm using the "All" member in ...
0
votes
0answers
22 views
MDX Query percentile 25th, 50th and 75th
I have a question and I haven't been able to find the answer (neither in this forum nor other) I am looking for:
I need to calculate the 25th Percentile, the median (the 50th percentile) and the ...
1
vote
1answer
78 views
CLASSIC: named set in MDX top 2 by dimension
SSAS 2012 Multidimensional DW has
Measures: Line total,
Dimension with hierarchy: [Division] - [Sales
Person].
I am trying to make set of top 2 salespersons by divisions.
This code sample gives ...
0
votes
1answer
59 views
“The restrictions imposed by the CONSTRAINED flag … were violated”
I am new to ssrs .i am creating report which query on cube and provides the result i have used parameter for choosing to and from date and its giving error like "the restriction imposed by constrained ...
1
vote
0answers
34 views
Return the last non empty member of date dimension, based on other dimension
New to MDX and a bit bewildered...
We have a cube with an excel pivot table over the top for reporting. What I need to provide is an easy means for people to see the max (last) member of the ...
1
vote
1answer
49 views
MDX Add Calculated Member For Average
I have a working query I would like to change a little bit.
The working query gives me a calculated measure value for each campaign that a user has participated in.
Since in this query example, ...
1
vote
1answer
136 views
Pentaho Mondrian OLAP Schema Roles
I have a Mondrian server webapp up and running to handle MDX queries, fetch data from the OLAP cubes defined in our Mondrian Schema, and return the XMLA required by the front-end GUI application to ...
0
votes
0answers
16 views
How to determine if current User is SQL Server Analysis Server Admin
I'd like to scope some cells to particular values if the current user is an SSAS admin.
I'm not sure where I'd even begin to determine that kind of introspection. Any ideas would be welcome please.
1
vote
1answer
61 views
Using NOT IN in an MDX query
I am trying to filter out some points from a dimension in my MDX select query. I have used the Filter(, ) function as documented at http://mondrian.pentaho.com/documentation/mdx.php . The MDX being ...
0
votes
0answers
87 views
OLAP Analyic tool for SQL Server Data Warehouse
I searched a lot but I couldn't find a tool that can connect to SQL Server data warehouse. Most of them are connecting to another data warehouse called Mondrian. The other thing is that most of these ...
0
votes
1answer
39 views
Values of dimension with like clause SSAS
i want values of dimension with like clause.. i tried this
WITH
SET CITY
AS
FILTER(
[CITY].[CITY].CHILDREN,
vbamdx!INSTR([CITY].[CITY].CURRENTMEMBER.Name,'In',1 >= 1 )
)
MEMBER ...
0
votes
1answer
103 views
MDX - Drill down in a hierarchy to the last level having the member caption containing “#”
I have a UserHierarchy, and when the member caption of the current level contains a "#" in the name, is resembles a particular user type. The UserHierarchy, contains up to 5 levels.
I would like to ...


