Hi all,
I have a Case Statement that displays a date field when a Fixed Choice List is NULL. To achieve this I have had to CAST the date field as CHAR, however the returned value shows in the wrong date format.
Is there a way to format the date?
Formula :
CASE WHEN "CommercialContractLaunch_c"."FieldAlert1IssuedSupportingInfo_c_Meaning" IS NULL THEN CAST("CommercialContractLaunch_c"."FieldAlert1Issued_c" AS CHAR) ELSE "CommercialContractLaunch_c"."FieldAlert1IssuedSupportingInfo_c_Meaning" END
Date field : "CommercialContractLaunch_c"."FieldAlert1Issued_c"
Fixed Choice List : "CommercialContractLaunch_c"."FieldAlert1IssuedSupportingInfo_c_Meaning"