Dear All,
I want a solution for the below scenario. Please help.
I have below Objects which defined in custom hierarchy in Univ for Drill.
Region
Country
State
I have a webi Report with Objects,
| Region | Sales Rev |
__________________
|North | 100 |
|South | 200 |
After Enabling Drill. If you Click on "North" It will take you Down "Country" --- Below is the Result
| Country | Sales Rev |
__________________
|US | 60 |
|CAN | 40 |
If you Click on "US" It will take you Down "STATE" --- Below is the Result
| State | Sales Rev |
__________________
|TX | 30 |
|FL | 20 |
Now, I want to define If Sales Rev of "State" < 25 then "Yes" else "No". in another column.
But the column should display "Null" when you are in Top Hierarchy. It should only display "Yes" or "No" when you drill down to "State". Else you get Wrong results which confuses the user.
Below is the expected Result.
Report without Drill
| Region | Sales Rev | Status |
____________________________
|NORTH | 100 | |
|SOUTH | 200 | |
Drill down to "Country"
Report without Drill
| Country | Sales Rev | Status |
________________________
|US | 60 | |
|CAN | 40 | |
Further Drill to "State"
| State | Sales Rev | Status |
__________________________
|TX | 30 | No |
|FL | 20 | Yes |
Please suggest.