Skip to main content
For cloned opportunities, it shows a proper creation date, but age seems to be calculating on the original opportunity's creation date, not the new cloned opportunity.
2 answers
  1. May 13, 2015, 5:25 AM
    I couldn't find in Salesforce Docs how it is being calulated, but you can "roll your own" by creating a custom formula field:

     

    IF(IsClosed,( 

     

    CloseDate - DATEVALUE(CreatedDate)), 

     

    NOW() - CreatedDate)

     

    I would create this field and see if there is a diff and where

     

     
0/9000