Skip to main content
 So there are some dates that I enter into SF whenever I create a new contact, e.g., a birthday, a planned visit.  Is there a way to automatically add those dates to my SF calendar?

 

Thanks!
3 respostas
  1. 7 de jul. de 2020, 21:24
    You you have a bithdate field, you can use the following formula:

     

    IF(

     

    TODAY() > DATE( YEAR(TODAY() ),

     

    MONTH( EGAFutura__Fecha_nacimiento__c ),

     

    DAY( EGAFutura__Fecha_nacimiento__c ) ),

     

    DATE( YEAR(TODAY() ) + 1,

     

    MONTH( EGAFutura__Fecha_nacimiento__c),

     

    DAY( EGAFutura__Fecha_nacimiento__c ) ),

     

    DATE( YEAR(TODAY() ),

     

    MONTH( EGAFutura__Fecha_nacimiento__c ),

     

    DAY( EGAFutura__Fecha_nacimiento__c ) )

     

    )

     

    Just replace EGAFutura__Fecha_nacimiento__c with the name of your birthdate field!
0/9000