How to Find Users Last Login Date and Time In Salesforce
In this blog, you will learn how you can find users last login date and time in salesforce.
Follow below simple steps
- Go to Setup
- Open Developer Console
- Go To Query Editor
- Write a Simple Query
SELECT Id, Name, Profile.Name, LastLoginDate FROM User
WHERE LastLoginDate != null
- Click on Execute
Follow Us