Skip to main content
Nancy Wilde 님이 #Data Management에 질문했습니다
How can I compare two date fields on a custom object and pull in the greater of the two dates?   For example:

 

02/01/2013 and 03/15/2013, I need to pull in 03/15/2013.
답변 1개
  1. 2013년 5월 14일 오후 4:06
    A formula with return type of Date. The formula should be the following:

     

    IF(Date_Field1__c > Date_Field2__c, Date_Field1__c, Date_Field2__c)
0/9000