Skip to main content
Rayna Petkov (Aiqueous) ha fatto una domanda in #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 risposte
  1. 1 dic 2021, 20: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