Skip to main content
I am running a report to show No of New Customers V Existing Customers each month for the past year and I want to check if they are new by comparing the Opportunity Close Date and the Account Created Date - is this possible ?
5 réponses
  1. 26 juil. 2013, 10:22
    You can create a custom formula field on the Opportunity record which uses Account.CreatedDate and Opportunity.CloseDate.  You could calculate the number of days between the two, or you could return a true/false depending on if the 2 dates are in the same month.

     

    For example:

     

    MONTH(CLoseDate) = MONTH(Account.CreatedDate)

     

    returns true in a checkbox formula field if the dates are in the same month.

     

    Use the dropdowns and picklists to assemble the formula you need from the functions and fields available.
0/9000