User Story
As a sales manager at XYZ Corporation, I want to track all the Leads that have been successfully converted to Accounts, Contacts, and Opportunities so that I can monitor our sales performance and ensure that our lead conversion process is working effectively.
SOQL
SELECT Id, Name, ConvertedAccountId, ConvertedContactId, ConvertedOpportunityId
FROM Lead
WHERE IsConverted = true AND ConvertedAccountId != null AND ConvertedContactId != null AND ConvertedOpportunityId != null
Video
Video does not exists.