cancel
Showing results for 
Search instead for 
Did you mean: 

New dimension in universe

Former Member
0 Kudos

Hi,

I'm new in Universe design and MDX.

I have Universe based on SSAS 2008 OLAP Cube.

There are objects like Client, Service,Date, Revenue

We have three kinds of services (let say s1, s2, s3)

We need a new dimension.

New dimension should show combination of active services for particular Client in particular date. It means that it should be equal "s1s2s3" when there is revenue for client and day from all services, be equal "s1" when therehere is revenue for client and day from s1 service, and so on...

Each record of data should have added a column with new dimension value:

s1, s2, s3, s1s2, s2s3, s1s3, s1s2s3 depending on revenue on services for Client and day

Is it possible to create a new dimension which fulfills such requirements?

How to do it?

Regards

MG

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Define new dimension obj as Services_dim as

Select Service from ******** where Revenue is not null ans Date in @variable('Date')

By the above you will get all the values for the service for a praticular date n revenues are not null.

Then try to concatenate those values of services using CONCAT function.

Cheers,

Suresh Aluri.

Answers (0)