You need to sign in to do that
Don't have an account?

Custom Formula Field Problems
I am trying to create a formula field to calculate the number of days since the Last Status Changed date. I have a custom field Last_Status_Changed__c, which is a date field. I need to create a formula field that will calculate the number of days before today that the status was last changed.
I've looked at the Help functionality for formulas, and I found the Today() function. But, I haven't found a Date Difference type function. How can I create this formula field?
Thanks!
I've looked at the Help functionality for formulas, and I found the Today() function. But, I haven't found a Date Difference type function. How can I create this formula field?
Thanks!
You are really close. The formula field would be a number, with a formula something like
TODAY() - DateField
Hope this helps.
I'm having a similar problem as well, I'm trying to create a formula field "Age Qualified Pending", which will show me how many days has passed before a Lead has gone into a certain status.
Qualified_Pending_Date__c - CreatedDate
The Qualified_Pending_Date__c is a custom date field that will set when the lead reaches a certain status (thru a workflow rule).
Anyways, when I try to check the syntax on this formula, I receive this error
"Error: Incorrect parameter for function -(). Expected Number, Date, received DateTime"
I guess it doesn't like my subtraction function. Has anyone else run into this problem? Does anyone have a solution??