function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sohi KhanSohi Khan 

How to find out record types created during a time period, their association to the page layout and how many records were created per record types

Narender Singh(Nads)Narender Singh(Nads)

Hi Sohi,
You can do combination on SQOL queries to get all sort of data you want.

For example to get the list of all recordtypes created today you can use:
select id,name from recordtype where createddate = today

and you can query on sobjects for recordtype as:
select id,name,recordtype.name from account where recordtype.name='Put your record type name here'

Let me know if it helps.
Thanks!