Skip to main content
Eric Graber 님이 #Data Management에 질문했습니다
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개
  1. 2015년 5월 13일 오전 5:25
    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