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
Gregory512Gregory512 

Profile specific validation rule

I'm trying to make this validation rule apply only for users assigned to a custom profile called 'ICDS Standard User':

 

 

NOT(OR(ISNEW(),HasOpportunityLineItem))

 

 Any ideas on how to do this?

 

Thanks for your help. 

 

Steve :-/Steve :-/

Try something like this

 

AND ($Profile.Name = "ICDS Standard User",NOT(OR(ISNEW(),HasOpportunityLineItem)))