Ajouter aux favorisNancy Wilde a posé une question dans #Data Management14 mai 2013, 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 réponseTriTrier par dateTrier par ordre d’utilitéTrier par dateJames Jetchick (Rivot Digital)14 mai 2013, 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)Ajouter un commentaireRédiger une réponse...GrasItaliqueSoulignerBarréListe à pucesListe numérotéeAjouter un lienBloc de codeInsérer une imageJoindre des fichiersURL du lienAnnulerEnregistrer0/9000Répondre
James Jetchick (Rivot Digital)14 mai 2013, 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)