お気に入りNancy Wilde が「#Data Management」で質問2013年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)