I have create the following tendency
(IIF([Measures].[Age]=TRUE,1,0)+
IIF([Measures].[Idle]=TRUE,1,0)+
IIF([Measures].[Labor]=TRUE,1,0))/3
My issue is that in excel if I use this (or the kpi) the heritages aren't take in account and each heiritable show all possible results instead of ignore those that is suppose to be filter by.
Example
It should show
America
USA 110 OK
Colombia 101 OK
Brazil 000 Bad
Asia
Japan 111 OK
But instead it shows
America
USA 110 OK
Colombia 101 OK
Brazil 000 Bad
Japan OK
Asia
USA OK
Colombia OK
Brazil Bad
Japan 111 OK
Can anyone point me what I am doing wrong?