How to find the last data entry date on Standard and Custom object in Salesforce?
SOQL can be used find the last data entry date on Standard and Custom object in Salesforce. Sample SOQL: SELECT Id, CreatedDate FROM Account WHERE CreatedDate = LAST_N_DAYS:5 ORDER BY ....