[SalesForce] way to mass convert leads into accounts and contacts using data loader

Is there a way to mass convert leads into accounts and contacts using data loader?
I have 2400 leads which are already present in SFDC.
don't want to use code.
Please help.

Best Answer

Dataloader only supports basic DML operation, you cannot use it to convert to leads as it requires additional information while conversion and convert lead operation is not supported by dataloader.

You can maybe write a batch apex with Database.convertLead or try some appexchange package.

Related Topic