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

How to make a date field required (validation rule)
Im trying to create a validation rule :
Here is the example AND(ISPICKVAL( Status, "ISR-Sale"),ISBLANK( Date_of_Sale__c ) )
I have a picklist field for Lead status. If sales user selects ISR - Sale value from Lead status the date of Sale ( custom field ) should be a required field. The above formula shows no error but its not working. Any help would be greatly appreciated
Here is the example AND(ISPICKVAL( Status, "ISR-Sale"),ISBLANK( Date_of_Sale__c ) )
I have a picklist field for Lead status. If sales user selects ISR - Sale value from Lead status the date of Sale ( custom field ) should be a required field. The above formula shows no error but its not working. Any help would be greatly appreciated
The last thing I can recommend is that the picklist value matches exactly - I'd copy it directly from the list... (no extra spaces between the hyphen, etc...)
All Answers
The last thing I can recommend is that the picklist value matches exactly - I'd copy it directly from the list... (no extra spaces between the hyphen, etc...)
The formula seems to be perfect for me. I think the option value you are trying to compare with will have value like 'ISR - Sale'. These is some spacing between hyphen and words.