[SalesForce] Can we use custom label in validation rule

In my validation rule, $Profile.Name!='MyProfileName' is there. I have to replace this by using custom label. How can i accomplish that?

Best Answer

You will need to use global variable $Label

$Profile.Name !=  $Label.MyProfile
Related Topic