List of Custom Fields by Date – SOQL

Rate this post

There is a way you can list all of your custom fields by created date using SOQL in Developer Console.

Don’t forget to check the USE TOOLING API

SELECT NameSpacePrefix, DeveloperName, TableEnumOrId, CreatedDate, LastModifiedDate FROM CustomField order by CreatedDate desc

Leave a Comment