Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Tracking changes in excel

I am trying to track changes that I am making to a workbook. This workbook
has 4 different worksheets. This workbook also has links in it so everytime
I go from one worksheet to the next it updates these links and then shows as
if I made changes to it when I didn't. When i go to tools and track changes
I've tried to choose the "where" but it only allows me to chose one worksheet
to select my criteria. When i try to put multiple sheets in the "where" it
says that my reference is invalid. Anyone have ideas?

Also, is there anyway to track changes like they track in microsoft word?
This would be even better and looks much nicer for what I am doing?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Tracking changes in excel

Try this exsample:
make a sheet e.g. Spy
put this code in all other sheets code-module

Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Spy").Cells(Sheets("Spy").Cells(65500, 1).End(xlUp).Row + 1, 1) = Now
Sheets("Spy").Cells(Sheets("Spy").Cells(65500, 2).End(xlUp).Row + 1, 2) =
ActiveSheet.Name
Sheets("Spy").Cells(Sheets("Spy").Cells(65500, 3).End(xlUp).Row + 1, 3) =
Target.Address
Sheets("Spy").Cells(Sheets("Spy").Cells(65500, 4).End(xlUp).Row + 1, 4) =
Target.Value
End Sub


"mlayden" skrev:

I am trying to track changes that I am making to a workbook. This workbook
has 4 different worksheets. This workbook also has links in it so everytime
I go from one worksheet to the next it updates these links and then shows as
if I made changes to it when I didn't. When i go to tools and track changes
I've tried to choose the "where" but it only allows me to chose one worksheet
to select my criteria. When i try to put multiple sheets in the "where" it
says that my reference is invalid. Anyone have ideas?

Also, is there anyway to track changes like they track in microsoft word?
This would be even better and looks much nicer for what I am doing?

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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
Excel form for tracking task time JackD Excel Discussion (Misc queries) 0 February 22nd 06 11:01 PM
Excel template available for Defect Tracking Maury Brown Excel Discussion (Misc queries) 0 March 28th 05 08:51 PM
Difference in number of Excel NewsGroups Hari Prasadh Excel Discussion (Misc queries) 1 January 25th 05 11:32 AM
How do I convert an existing MS Excel worksheet tracking a simple. NOTANYJOE Excel Discussion (Misc queries) 1 January 4th 05 02:07 AM


All times are GMT +1. The time now is 11:25 AM.

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"