收藏Nancy Wilde 提问于 #Data Management2013年5月14日 15:55I need to compare two date fields and pull in the greater of the two dates.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 个回答排序按日期排序按最有帮助排序按日期排序James Jetchick (Rivot Digital)2013年5月14日 16:06A 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)添加评论撰写回答...粗体斜体下划线删除线项目符号列表编号列表添加链接代码块插入图像附加文件链接 URL取消保存0/9000回复
James Jetchick (Rivot Digital)2013年5月14日 16:06A 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)