Skip to main content
Jocelyn Froehlich 님이 #Reports & Dashboards에 질문했습니다
how do I add the age of a lead to the lead report?
답변 1개
  1. 2012년 10월 10일 오후 8:29
    I have a custom formula field on my lead object with the following syntax:

     

    NOW() - CreatedDate

     

    That calculates the number of days the lead has existed and can be reported on as well.

     

    Edit: Actually I have two fields: One calculates all time and the other calculates based on our criteria of an "open" lead. The "open lead" formula is

     

    IF(OR(ISPICKVAL(Status, "Open"), ISPICKVAL(Status, "Contacted")),ROUND(NOW()-CreatedDate, 0), null)
0/9000