Skip to main content
Rayna Petkov (Aiqueous) 님이 #Formulas에 질문했습니다

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?

 

#Formulas #Automation

답변 14개
  1. 2021년 12월 1일 오후 8:02

    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())

0/9000