5 个回答
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.