To view converted leads in Salesforce, create a standard Leads report and filter by Converted equals True to display records hidden by the IsConverted flag. You can also search for the lead by name in Global Search, or run a SOQL query on the Lead object to retrieve conversion IDs. These 3 methods give users and administrators read-only access to lead history without changing any standard list views.
Converted leads aren't actually gone. Salesforce just moves them out of the way so your pipeline doesn't look like a cluttered mess of old data. But sometimes you need to get back in there to check an old description field or verify a referral source.
Why you can't easily view converted leads in the Lead tab
When you hit that convert button, Salesforce flips a hidden switch on the record called IsConverted. Once that's set to true, the record stops showing up in your standard "My Leads" or "Open Leads" list views. It's a built-in behavior to keep users focused on the new Account, Contact, and Opportunity records.
The data is still there, though. It's just sitting in a read-only state in the background, so finding it is a question of knowing which back door to use.
Practical ways to view converted leads
I've seen teams try all sorts of messy workarounds for this, when a few reliable methods cover it. Which one you want depends on whether you're a daily user or an admin.
1. Build a Lead report
This is my go-to recommendation for 90 percent of users. It's simple, it's native, and it doesn't require any special technical skills. You just need to create a new report using the standard Leads report type.
Once you're in the report builder, go to your filters and find the field named "Converted." Set that filter to "True." Now your report will only show those "missing" records. If you're new to this, it helps to understand how Salesforce report types work so you can pull in data from the resulting Account or Opportunity as well.
2. Use Global Search
You can still find these records from the search bar at the top of your screen. Type in the name of a converted lead and it might show up in the results, though the behavior here can be a bit wonky.
Sometimes Salesforce will redirect you straight to the Contact record instead. But if you look at the search results page closely, you can often find the Lead record specifically. It's a quick way to view converted leads without building a whole report for a one-off request.
3. Use SOQL or data tools
If you're an admin or a developer, you probably don't want to click through the UI. You can run a quick query in the Developer Console or Workbench to see exactly what's happening under the hood. Use a query like this:
SELECT Id, Name, ConvertedContactId, ConvertedAccountId FROM Lead WHERE IsConverted = true
This is perfect for when you're doing a data audit or trying to figure out why a conversion went sideways. It gives you the raw IDs so you can see exactly which records were created during the process.
Converted leads are almost always read-only. If you find yourself needing to edit them constantly, the answer is probably in your business process rather than a technical fix.
Troubleshooting why you can't view converted leads
So you've tried the report and the search, and you still can't see anything. This is where permissions come into play. There isn't a single "View Converted Leads" checkbox in the setup menu, which is what usually trips people up.
Access is mostly governed by standard Lead object permissions. If a user doesn't have "Read" access to Leads, they aren't going to see them anywhere. You also need to make sure their sharing settings allow them to see those specific records. If you're struggling with this, checking the differences in Salesforce roles vs profiles can help you see if a hierarchy issue is blocking the view.
Also, double-check that the "Run Reports" permission is active for the user. I've spent an hour debugging a visibility issue only to realize the user just didn't have permission to run the report I built for them. Don't be that person.
Key takeaways
- Converted leads aren't deleted; they are just flagged as
IsConverted = true. - The easiest way to see them is a Lead report with a "Converted = True" filter.
- Global search can find them, but it often redirects you to the new Contact record.
- Permissions are tied to the Lead object itself, not a special "converted" setting.
- SOQL is the fastest way for admins to view converted leads in bulk.
Managing these records comes down to knowing where Salesforce hides the "Done" pile. Start with a report, check your filters, and you'll usually find what you're looking for. If you're still stuck, run that SOQL query to confirm the records actually exist in the database before you spend too much time digging through the UI.
Leave a Comment