
Am I running an opportunity history report? Lead lifetime? Adding a custom field with a formula? Seems like each one I try is not allowing me to see the data that I really want. It's mostly there in each report, but then when I try to do a chart, it looks wrong.
Help?
14 respuestas
Okay so here's the drill... create a new custom field on the Lead:
Name = LeadCreatedDate (or whatever)
Datatype = Date
Create a WFR that is triggered "every time the record in created or editied"
Create an immeditate WF Action (Field Update)
Field: LeadCreatedDate
Formula: DATEVALUE(CreatedDate)
Create a new custom field on the Opportunity object:
Name = LeadCreatedDate (or whatever)
Datatype = Date
Map the Lead.LeadCreateDate to the Opportunity.LeadCreatedDate.
Create a new field on the Opportunity object:
Name: LeadOpportunityAge (or whatever)
Datatype = FORMULA
Result = NUMBER,0 decimals
Formula =
IF(IsClosed = TRUE, CloseDate - LeadCreatedDate , TODAY() - LeadCreatedDate__c )
Then ship your buddy SteveMo a bunch of these! ->