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
Ravindar AdminRavindar Admin 

how to count one custom object total records using formula field on that object only?

Best Answer chosen by Ravindar Admin
Sure@DreamSure@Dream
Hi Ravindar,

Unfortunately there is no such feature, you need to go with apex triggers. 
1. Whenever a new record is being created, increment the value.
2. Whenever a record is being deleted, decrement the value.

Also, Its good  to store the # of records in a separate object/custom setting, to avoid unnecessary updates to all the records.

mark this as the solution, if it solves your problem.

Thanks