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

Time validation rule
I would like to create a validation rule to prevent a record from being saved if the time is after X. I have attempted this, but I can't see where I can reference the current time. Any ideas?
AND (
ISPICKVAL ( Status__c , "Submitted" ),
Due_Date__c = TODAY() ,
Current time <= 4 pm
)
AND (
ISPICKVAL ( Status__c , "Submitted" ),
Due_Date__c = TODAY() ,
Current time <= 4 pm
)
AND (
ISPICKVAL ( Status__c , "Submitted" ),
Due_Date__c = TODAY() ,
NOW() <= 4 pm
)