I want to convert AR_Questionnaire_Signed_Date_Text__c to a date field MM/DD/YYYY
I have tried DATEVALUE(AR_Questionnaire_Signed_Date_Text__c) but that is not working. The error I am getting is "The formula expression is invalid: Field AR_Questionnaire_Signed_Date_Text__c does not exist. Check spelling." But the field is correctly spelled
Any suggestions?
답변 14개
You can use below formula inside Date() paste Whatever Mikey Brown texted with Project__c.Populate...etc like this.
IF(ISBLANK(Project__c.Populate_AR_Questionnaire_Date__c),null, DATE())