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
HsrHsr 

red mandatory symbol for standard picklist(Mailing Country) field in configuration side

When client is open the New contact object then show Mailing country field is Required field with Red mark  manadatory.
CloudalyzeCloudalyze
Hi,
 
You can't make the field required on the page layout, but you can use a validation rule like this to make the fields required to hold a value.

please use this into contact validation rule.

OR(

ISBLANK(MailingCountry)
)

please check and let us know.