Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Data from 2 Tables

Hi All
I am working on the work order report.
We store line information in another table.
There are some work order where Line is not assigned yet and when I create report the Line records show BLANK.
Is there any way I can show 'UNASSIGNED' word if the line is blank?
For example: -
WO1 - L1
WO2 - L1
WO3 - L2
WO4-L1
WO5 - < No information - blank record>
I want to show this as following -
WO1 - L1
WO2 - L1
WO3 - L2
WO4-L1
WO5 - UNASSIGNED
Thanks
Answers
-
This is the resulta of your bi analysis?
If the answer is yes. Apply this:
Ifnull( your column status assigment, 'unassigned')
Let me know your results.
Kind regards
0 -
use a key of 0 (ZERO) in your dimension for unassigned ... then you preserve the inner joins AND it's easier to find the rows in your table maintenance when the key needs to be set ... set up all your dimensions like this where you might have an unassigned key relationship.
IE
Status_Dim
Key | Status
0 | Unassigned
1 | Closed
2 | Open
3 | Pending
4 | Held
5 | Canceled
0