Can I pgrogramatically access Track Changes?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When a workbook is shared one has the option to view the changes that various
users have made. Is there any way to programatically access those changes>

Thanks,

Russ
 
I have never tried it, but as I recall, the changes are stored in a hidden
sheet named HISTORY. You might see if such a sheet exist and see what it
looks like. That could be accessed programmatically.
 
Thanks Tom. I'll check it out.

Tom Ogilvy said:
I have never tried it, but as I recall, the changes are stored in a hidden
sheet named HISTORY. You might see if such a sheet exist and see what it
looks like. That could be accessed programmatically.
 
Russ,

This code will generate the History sheet that Tom mentioned. When you save
the workbook, it seems Excel automatically deletes the History sheet. But I
guess you can just always re-generate the History Sheet whenever you need it.


Sub ShowHistory
ActiveWorkbook.ListChangesOnNewSheet = True
End Sub
 
That's handy. thanks Vergel.

Vergel Adriano said:
Russ,

This code will generate the History sheet that Tom mentioned. When you save
the workbook, it seems Excel automatically deletes the History sheet. But I
guess you can just always re-generate the History Sheet whenever you need it.


Sub ShowHistory
ActiveWorkbook.ListChangesOnNewSheet = True
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top