I have a column with a custom title of "Estimated ship date" but with the formula
CASE WHEN "Order Detail - Oe Order Release"."Revised EST Ship Date" IS NULL THEN "Order Detail - Oe Order Release"."Original EST Ship Date" ELSE "Order Detail - Oe Order Release"."Revised EST Ship Date" END
Is it possible to add a condition that leaves the value as Null if the resulting date is before the current date? I know how to use the >date - 1
My initial thought was to create a new column using another CASE WHEN statement but when I try to insert the column it fills in the whole
CASE WHEN "Order Detail - Oe Order Release"."Revised EST Ship Date" IS NULL THEN "Order Detail - Oe Order Release"."Original EST Ship Date" ELSE "Order Detail - Oe Order Release"."Revised EST Ship Date" END
statement but I get a bad column name error.
If I try to manually enter it just as "Order Detail - Oe Order Release"."Estimated Ship Date" I get the same error.
I feel like there must be an easier way to do this.