Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 43 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 283 Oracle Analytics and AI News
- 60 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.4K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 108 Oracle Analytics and AI Trainings
- 20 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Null Date
Jae.L
Rank 4 - Community Specialist
Hi All,
Null dates are displayed as 11/30/0 in my dashboard. How can this to be displayed as blanks.
Thank you
Tagged:
0
Best Answer
-
Hi @A.Aj,
Can you please try a CASE Statement like following to replace the value to null?
CASE WHEN "Your_Date_Column" IS NULL THEN NULL WHEN "Your_Date_Column" = TO_DATE('0001-01-01', 'YYYY-MM-DD') THEN NULL -- Handles potential '0000' dates ELSE "Your_Date_Column" ENDHope this help.
Thank you.
1
Answers
-
Hi @A.Aj,
Additionally, it seems it is an expected behaviour and got the following Idea.
FDI Workbook should show NULLs for empty Date column cells, instead of "30/11/0". — Oracle
Please vote or comments.
Thank you.
1 -
@Bhaskar Konar this worked, thank you.
1 -
Glad you found it helpful.
Thank you very much, @Jae.L!
0

