You need to sign in to do that
Don't have an account?
Formula Not Working
AND(PRIORVALUE( pi__score__c )< pi__score__c - 25, Lead_Record_Type_Text__c = "School Lead", OR(LastActivityDate < TODAY() +5, LastActivityDate=null) )
Can someone help me with this formula. It worked until I added the syntax ' , OR(LastActivityDate > TODAY() +5, LastActivityDate=null)'. I'm trying to say the last activity date has to be greater than today+ 5 days OR equal to blank.
Thanks for the help!
Your formula has LastActivityDate < TODAY() +5 whereas in the description you say you are checking the last activity date to be greater than today + 5. Can this be the reason?
Thanks
AND(PRIORVALUE( pi__score__c )< pi__score__c - 25, Lead_Record_Type_Text__c = "School Lead", OR(LastActivityDate < TODAY() +5, LastActivityDate=null) )
Just replace LastActivityDate=null with ISBLANK(LastActivityDate)
This should work.
Thanks!