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
Brad Satterwhite 7Brad Satterwhite 7 

Is there a way to prevent users from converting a lead unless certain lead object fields are filled out?

I want to make my SDRs fill in basic qualification info on the Lead Page before they convert the lead so that the information gets mapped to the account/contact/opp. Can I make certain fields required before they can convert a lead?
Arpit Jain7Arpit Jain7
Hello Brad,

You can simply write validation rule to achieve the same. Please make sure "Require Validation for Converted Leads" is checked under the Lead Settings.

Your validation rule will look like below , you can modify it further per requirement.

AND(IsConverted, ISBLANK(status))

Hope this will help.

Thanks
Arpit