You need to sign in to do that
Don't have an account?
David Meats
Keep getting an error with "Introduction to Formula Fields" module??
I am a newbie....
I keep getting the error message:
Challenge Not yet complete... here's what's wrong:
The 'Days_Since_Last_Update__c' formula field did not return the correct number of days between an Account’s Last Activity Date and today
This is the formula I am using as there is no Last Activity Date field in the case object.
SO I am using Lastmodified Date field from the Case object.
ABS( DATEVALUE( LastModifiedDate ) - TODAY())
Which returns a value of "11" as number when I view it in the report
Can someone please explain what I am doing wrong?? OR where do you find the "Last Acivity Date" field
I keep getting the error message:
Challenge Not yet complete... here's what's wrong:
The 'Days_Since_Last_Update__c' formula field did not return the correct number of days between an Account’s Last Activity Date and today
This is the formula I am using as there is no Last Activity Date field in the case object.
SO I am using Lastmodified Date field from the Case object.
ABS( DATEVALUE( LastModifiedDate ) - TODAY())
Which returns a value of "11" as number when I view it in the report
Can someone please explain what I am doing wrong?? OR where do you find the "Last Acivity Date" field
Try This:
Let me know if it helped you!
Thanks,
AG
All Answers
"TODAY() - DATEVALUE( LastModifiedDate )" ?
Try This:
Let me know if it helped you!
Thanks,
AG
That worked .... I would have looked the account object but it said you had to use the case object. Thanks again