You need to sign in to do that
Don't have an account?
Trailhead Challenge: Receiving error, please help
I'm creating a formula field that determins the number of days between today and the last activity date for a case's account. I've created a Number formula of TODAY() - Last_Activity_Date__c. It's telling me the Challenge is not complete because "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."
Can someone help? Is my formula wrong?
Thanks in advance!
Can someone help? Is my formula wrong?
Thanks in advance!
if(Last_Activity_Date__c = today(),0,today()-Last_Activity_Date__c )
Thanks,
pRAMODH
Please try using the below formula:
You need to use the Account's LastActivityDate field. Please let me know if this helped you.
Thanks
Last_Activity_Date__c == dateValue(LastModifiedDate)
Hope this helps.