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
AbAb 

Blocking for conversion of lead for profile

Hello,
for the conversion of lead, can we block it for certain profiles.
Thank you for suggestion
Best Answer chosen by Ab
Khan AnasKhan Anas (Salesforce Developers) 
Hi,

Greetings to you!

You can do that by removing the Convert Leads permission from Profile. 

1. Go to Setup.
2. Select Profiles.
3. Edit the Profile that user has.
4. Under General User Permissions, uncheck the Convert Leads checkbox.

You can also create a permission set for convert lead and assign to users.

User-added image


Alternatively, create a validation rule on Lead like this:
AND( 
   IsConverted,
   Owner:User.Profile.Name <> "Insert Profile Name here",
)

I hope it helps you.

Kindly let me know if it helps you and close your query by marking it as solved so that it can help others in the future. It will help to keep this community clean.

Thanks and Regards,
Khan Anas