Skip to main content
8 risposte
  1. 4 mar 2020, 19:13

    Hmm...Not sure if this will work, but give this a try. I think the Created Date is not established on new records yet. So if it is a new record, then use TODAY() to compare to the Date of the VR implementation. If not, use the Created Date. Let me know how this works out.

    AND(

    ISBLANK(Last_Purchase_Date__c),

    IF(ISNEW(), TODAY(), DATEVALUE(CreatedDate)) >= DATE(2020, 3, 3)

    )

0/9000