Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Track and Accept changes in Shared and Protected

I've inserted the following macro in a worksheet to populate the first two
columsn with date and userid ---this will me to sort on when a change has
taken place on a record. HOWEVER...if the document is shared this macro will
NOT fire for the secondary users (ie...who i'm sharing this with).

The same is true if primary users attemps to Accept or Reject the changes.
If primary user Accepts the change...I want the macro to fire and populate
the my fire two columns.

Private Sub Worksheet_Change(ByVal Target As Range)
'**This will put the latest date and user in column A and B any time you add
or change any information in B:AA:
If Not Intersect(Target, Range("B:AZ")) Is Nothing And
IsEmpty(Cells(Target.Row, 1)) Then
Cells(Target.Row, 1) = Now
Cells(Target.Row, 2) = Application.UserName
End If
End Sub

Any suggestions????
Thanks in Advance.
Chad

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Track/Accept Changes WhOkNoWs Excel Worksheet Functions 0 August 22nd 07 02:26 PM
How do I change personal info to track changes to shared workbooks jgladwell Excel Discussion (Misc queries) 1 January 10th 07 06:45 PM
In a shared workbook, can only one person "accept or reject" chang pama Excel Discussion (Misc queries) 0 September 8th 05 01:45 PM
can only one person accept or reject changes in a shared workbook? pama Excel Discussion (Misc queries) 0 September 7th 05 07:33 PM
Can I track changes made to a shared file per userid. Julie _at_GBS Excel Discussion (Misc queries) 4 May 3rd 05 01:52 PM


All times are GMT +1. The time now is 04:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"