Bigjo
Bigjo

Reputation: 633

obiee display measures even if it is null

I am making an analysis with obiee 11g. I have a program code and some measures I make in my analyse. For example: count of objectives, count of courses,... I make this by a formula COUNT(DISTINCT objectives) for example.

The problem is that I have no row, when one of those counts are null. For example I have a program course with 2 objectives and 2 courses, then it will display

Program count of objectives count of courses
1           2               2

But I have a program 2 with 3 objectives and no courses. The row will not be display, but I want the following result:

Program count of objectives count of courses
1           2                   2
2           3                   0

How can I achieve this?

Upvotes: 0

Views: 1744

Answers (1)

Chris
Chris

Reputation: 2752

Analysis properties -> Data -> Include Null Values

Upvotes: 1

Related Questions