I have a situation where we have records that were closed but because the Date Closed field was not automatically populated by the Closed Status in past records it was left blank. For reporting purposes, I want to copy the Date Modified (which is never left null) into the Date Closed field when the record status is Closed so that it will have at least a rough estimate of when the record was closed. Here is the logic:
IF ([Date Closed] = Null() or [Date Closed] = "") AND [Request Status] = "Closed" THEN [Date Closed] = [Modified]
ELSE [Date Closed]
ENDIF
The problem I'm having is that when I do [Date Closed] = [Modified], the new date in the [Date Closed] field appears as '1899-12-30 00:00:00' instead of the actual date from the [Modified] field. How can I fix this?
Thanks