Modification history

A

Akshay Bakhai

I want to design a spreadsheet with an automated means to
record the timestamp when each of the different worksheets
within the spreadsheet are modified.

I would suppose that the BeforeSave and
WorkSheetSelectionChange events need to be used in
combination.

However, WorkSheetSelectionChange event would be trigerred
everything something is modified; and thus could give me
an incorrect picture; for example: if I change something
on a worksheet and UnDo it then my simple routine would
still record it as a change.

I would like this modification history table to be built
only if the worksheet has really changed in contents with
reference to its previously saved version. In that
situation only do I want a record to be added; also it
needs to be only one record per worksheet for each SAVE
and not every time the worksheet is changed.

Anybody has any ideas?

Many thanks in anticipation,

Akshay.
 
T

Tom Ogilvy

To be that precise, you would need to record the state of the worksheet(s)
at the start, then make a comparison when the save is done to see if there
is a difference. Sounds like a lot of overhead. Then if you find a
difference, write your record. This comparison and writing would be done in
the before save event. You would then update your record of the "starting
position"
 
T

Tom Ogilvy

I am assuming you have explored the history feature associated with the
Shared Workbook option under the data menu.
 
A

Akshay Bakhai

Tom

I have not explored the history feature. I will try that
out to see if I can put it to some use.

thanks a lot for the help

akshay
 

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

Top