FavoritosNancy Wilde perguntou em #Data Management14 de mai. de 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 respostaClassificarClassificar por dataClassificar por mais útilClassificar por dataJames Jetchick (Rivot Digital)14 de mai. de 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)Adicionar um comentárioEscrever uma resposta...NegritoItálicoSublinhadoTachadoLista com marcadoresLista numeradaAdicionar linkBloco de códigosInserir imagemAnexar arquivosURL do linkCancelarSalvar0/9000Responder
James Jetchick (Rivot Digital)14 de mai. de 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)