Skip to main content
I have two fields in the opportunity object.   When field recieves a date stamp- and this can be any date - then the second field updates with a yes.   Can anyone help with the formula?  

 

 
2 respuestas
  1. 5 abr 2021, 19:26
    Hi Jennifer,

     

    Unless you're using Process Builder to populate the date/time value on that field, then PB isn't even needed. You can use a formula text field with the following:

    IF(ISBLANK(Date_Time_Field__c), "No", "Yes")

    Be sure to "treat blank fields as blanks"

     

    You can replace the "No" with null if you don't want anything displayed instead of it saying "No"
0/9000