Is there a way to count changes made?

I’m looking for a way to count the number of changes made through the track changes feature: what’s been added, what’s been deleted, and how many comments have been made. Currently, I can go to Manage under the Track Changes option, which shows all the changes that have been made. Best I can do is to count manually, which is slow and unreliable. Is there a faster way to count them?

Thanks

You can open the content.xml subfile and count (Find) all </office:annotation> (for comments), <text:insertion> (substract the number of comments for the insertions), and <text:deletion>.

That works. Thanks so much!