You need to sign in to do that
Don't have an account?

SOQL for finding Lead from Contact
Hello,
When a lead is converted, how can i find out the lead whcih is associated with the Contact.
I want t find out the leadfrom the contact.
Wthank you for suggestion
When a lead is converted, how can i find out the lead whcih is associated with the Contact.
I want t find out the leadfrom the contact.
Wthank you for suggestion
Greetings to you!
You could do a SOQL query on your closed Leads. The following query will provide you a list of all Accounts and Contacts that originated from a converted Lead. You could filter it on specific Account Ids, if necessary.
Get all converted Accounts and Contacts:
To find the original Lead for a specific Contact, use below query:
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
All Answers
SELECT ConvertedAccountId,ConvertedContactId,Id FROM Lead Where ConvertedContactId = '003XXXXXXXXXXXXXXX'
Thanks
Greetings to you!
You could do a SOQL query on your closed Leads. The following query will provide you a list of all Accounts and Contacts that originated from a converted Lead. You could filter it on specific Account Ids, if necessary.
Get all converted Accounts and Contacts:
To find the original Lead for a specific Contact, use below query:
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