즐겨찾기Nancy Wilde 님이 #Data Management에 질문했습니다2013년 5월 14일 오후 3: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일 오후 4: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일 오후 4: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)