Make a field(sampleField__c) Required
By pass the above for System Admin that is User's with system admin profile should be able to edit.
Here the object API name is Contact
Validation Rule on Contact object -
AND(
sampleField__c = '',
$Profile.Name <> 'System Administrator'
)
Error Message : This field is required.
Visual: https://www.youtube.com/watch?v=ViU016npNHc
Comments
Post a Comment