Establecer como favoritoNancy Wilde preguntó en #Data Management14 may 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 respuestaOrdenarClasificar por fechaClasificar por más útilClasificar por fechaJames Jetchick (Rivot Digital)14 may 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)Agregar un comentarioEscribir una respuesta...NegritaCursivaSubrayadoTachadoLista con viñetasLista numeradaAgregar vínculoBloque de códigoInsertar imagenAdjuntar archivosURL de vínculoCancelarGuardar0/9000Responder
James Jetchick (Rivot Digital)14 may 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)