tags:

views:

97

answers:

1

Hi all, I'm working on a cube with two different date dimensions: the fist one manages the patient hospedalization dates: [hosp_date] it is organized in Year,quater, month and relative_date : this one counts the number of days since 1st Jan. 1980.

and the second one manages the patient discharge dates: [disc_date] with the same organization of the first one.

these two dimensions are full, no holes between two days.

In this cube there is only one measure that count the number of the hospedalization. I'd like to create a calculated member with the number of days of hospedalization, so using the relative date something like:

with member [Measures].[dd] AS '[disc_date].[relative_date].currentmember - [hosp_date].[relative_date].currentmember'


select {[Measures].[dd]} on 0,
{[patient].[patient_id].members} on 1
from [cube]

And this query did not work as i thought. It returns the difference between the number of hospedalizations that ends on disc_date and the number of hospedalizations that starts on hosp_date. So it returns 0 for every patient. How can i retrieve the no. of hospedalization days for every patient?

tnx for reading.

A: 
Rudolf