Question:
How is the locked users list exported in CRM Online?
Answer:
Users can use the query (below) on Workbench or Data Loader to export the locked users list:
SELECT Id, UserId, IsFrozen, IsPasswordLocked FROM UserLogin where IsPasswordLocked = True
Related Documentation:
SFDC Help Documentation
Thank you