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日 16: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