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
Yogesh Kumar 108Yogesh Kumar 108 

how to know who who worked on how many cases

how to know who who worked on how many cases
Best Answer chosen by Yogesh Kumar 108
Ravi Dutt SharmaRavi Dutt Sharma
Yes, you can create a Report on case and group it by Case Owner. Create a report of Type Summary and add Case owner in the grouping.

User-added image

All Answers

Ravi Dutt SharmaRavi Dutt Sharma
Yogesh,

You can use below SOQL to get count of cases per user:
SELECT Count(Id),Owner.Name FROM Case GROUP BY Owner.Name

 
Yogesh Kumar 108Yogesh Kumar 108
Ravi, 

Iam actully a user , so will not be able to add SOQL, do we have anything whihc is already added and a user can pick them to find out result.
Ravi Dutt SharmaRavi Dutt Sharma
Yes, you can create a Report on case and group it by Case Owner. Create a report of Type Summary and add Case owner in the grouping.

User-added image
This was selected as the best answer
Ravi Dutt SharmaRavi Dutt Sharma
Yogesh,

Did the above answer helped you? If yes, can you please mark the question as solved. Thanks.