function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jisaacjisaac 

how to make the Salutation field required on Contacts

I need to make the Salutation field (Mr. Ms. Mrs, Dr. etc) required on contacts but the field does not show up on the page layout to make it required.

 

So I thought about doing a validation rule that it cannot be empty but since it is a picklist, I get stuck on the ISPICKVAL thing.

 

Its probably real simple - can someone open my eyes for me?

 

Thanks,

Jane

 

Best Answer chosen by Admin (Salesforce Developers) 
jisaacjisaac
Duh - I KNEW it was too simple and finally figured it out:

ISPICKVAL( Salutation , "")
Message Edited by jisaac on 07-24-2009 10:25 AM

All Answers

forcedotcomforcedotcom

Not sure how relevant this will be but you can now use the TEXT() function on picklist fields, might help you overcome the ISPICKVAL problems you're experiencing.

 

forcedotcom

 

 

jisaacjisaac
Duh - I KNEW it was too simple and finally figured it out:

ISPICKVAL( Salutation , "")
Message Edited by jisaac on 07-24-2009 10:25 AM
This was selected as the best answer