BookmarkSubscribeRSS Feed
UlfB
Calcite | Level 5

Hi all,

I’ve been trying to create a calculated measure in Cube Studio for calculating a ratio, but I’m stuck and could use some assistance.

My problem is the following:
As an example let’s say we have a cube with three dimensions, Time, Geography and Gender, and one measure, Quantity. The Time dimension only has one level, month, in the format YYYY-MM. What I would like to have is a new measure that calculates the ratio per month.
If I create a report in WRS based on the cube and set a group break on the Time dimension, it would look something like this if I for instance select month 2011-09 (where the total for Quantity is 12):

GeographyGenderQuantityRatio
AfricaFemale216,7%
AfricaMale216,7%
AsiaFemale216,7%
AsiaMale18,2%
EuropeFemale216,7%
EuropeMale325%

Somehow I want to use the grand total of Qantity for whatever month I’m currently looking at as denominator in the calculation so that the formula will be 'Value in current cell' / 'Grand total for current month', but I can’t figure out how to accomplish that.

Any help is appreciated!

Thanks in advance,

Ulf

3 REPLIES 3
TriciaA
Calcite | Level 5

I suspect you are going to have to use the MDX code (if you are not already).

Read more here: http://support.sas.com/documentation/cdl/en/mdxag/59575/HTML/default/viewer.htm#a002253381.htm

Hope this helps!

Tricia A

Blog: BI for SAS BI Users

TriciaA
Calcite | Level 5

Hey Ulf:

One of the bloggers on my site published this information recently:

Percent of Total MDX Calculation

Hope this helps!

Tricia

SAS BI Notes Blog

UlfB
Calcite | Level 5

Thanks for your replies! Actually we might have solved it already, I just forgot to update this post :smileyblush:

A colleague of mine had some spare time so he sat down with this problem, and after some trial and error he came up with a working solution. When he specified the measure over all dimensions but the time dimension (if that makes any sense, I don’t know how to express it) as denominator, the result was the total Quantity for any given month regardless of what drilldowns had been made in the other dimensions.
So for my example above the MDX for calculating the ratio would look like this (it probably says more than my attempt at an explanation):
[MEASURES].[Quantity] / ([MEASURES].[Quantity],[Geography].[All Geography],[Gender].[All Gender])


In short, just line up all dimensions in the cube apart from the time dimension in the denominator:
[MEASURES].[measure] / ([MEASURES].[measure],[Dimension-1].[All Dimension-1],[Dimension-2].[All Dimension-2],[Dimension-3].[All Dimension-3], … ,[Dimension-n].[All Dimension-n])

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 854 views
  • 0 likes
  • 2 in conversation