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
JaiJai 

Could you please help me on this. how to create validation rule for below requirement?

Please help me to  restric any account manager (profile containing csx) to create an opportunity with type = new business.
VinayVinay (Salesforce Developers) 
Try below.
 
AND(
CONTAINS($Profile.Name,"csx"),
ISPICKVAL(type, 'new business')
)
Thanks,
JaiJai
Hi Vinay,

Could you please let me know How to find Account Managers in salesforce. I am new for this.

Thanks,
Jayaramu T
VinayVinay (Salesforce Developers) 
You can navigate to Setup ---> Quick Find ---> Profiles,  here you can check list of profiles available in your org.

Please mark as Best Answer if above information was helpful.

Thanks,
fas sadefsefas sadefse
looking for the same solution for my new page. I have tested it on product page of Frankincense Resin (https://frankincensedirect.com/) but now I want to use with different pages.