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
Umair Mohammad 10Umair Mohammad 10 

Total # Cases in Org

How can I find a way to determine the total # of cases in our org as of now? 

Will it be a report, if so what parameters should I use?

Umair M.  
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Umair,

Do you mean to count the number of case records ? If so can you try the below SOQL.
 
select count(id) from case

Let me know if you face any issues.

 

If this solution helps, Please mark it as best answer.

 

Thanks,


 
Umair Mohammad 10Umair Mohammad 10
Yes total count of cases in our org.  Someone said to do a SOQL query via Dev console, but I am not familar with that.

Thx
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Umair,

I have shared the above query which you can execute in developer console Query editor section.

Thanks,