Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Case statement with Date timestamp field looking for NULL value
Content
I have written a formula to check for the2nd interview date field and if it’s empty then assign ‘not filled out’ else enter that date. The formula syntax doesn’t give any errors but the report is not refreshing and showing any data.
Here is the formula I have written that saves without errors
CASE WHEN (CAST ("Submission Dates"."2nd Interviewed Date" AS DATE)) IS NULL THEN (CAST( 'Not filled out' AS DATE)) ELSE CAST ( "Submission Dates"."2nd Interviewed Date" AS DATE) END
Please point out what looks incorrect that might be causing my report to error out.
0