Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Version Control in Excel

I'm working on a large spreadsheet which lets say is work in progress and
therefore I have to resave it each time it is updated under a different name
to distinguish between each saved copy.

Is it possible to set up the Excel file so whenever I go into it it creates
a new saved file with a dated reference, so I have a full audit trail (i.e.
historical log) in date order automatically.
--
David
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default Version Control in Excel


Użytkownik "David" napisał w wiadomości
...
I'm working on a large spreadsheet which lets say is work in progress and
therefore I have to resave it each time it is updated under a different

name
to distinguish between each saved copy.

Is it possible to set up the Excel file so whenever I go into it it

creates
a new saved file with a dated reference, so I have a full audit trail

(i.e.
historical log) in date order automatically.
--
David


try
Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ActiveWorkbook
.Save
filepath = .Path
.SaveAs filepath & "\your name " & Date & ".xls"
.Close
End With
End Sub
mcg



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,560
Default Version Control in Excel

Excuse my ignorance but where do I type what you have written. What is
Private Sub Workbook.

I'm obviously not very proficient in Excel so please walk me through it.

Thanks
--
David


"Gazeta" wrote:


UÂżytkownik "David" napisaÂł w wiadomoÂści
...
I'm working on a large spreadsheet which lets say is work in progress and
therefore I have to resave it each time it is updated under a different

name
to distinguish between each saved copy.

Is it possible to set up the Excel file so whenever I go into it it

creates
a new saved file with a dated reference, so I have a full audit trail

(i.e.
historical log) in date order automatically.
--
David


try
Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ActiveWorkbook
.Save
filepath = .Path
.SaveAs filepath & "\your name " & Date & ".xls"
.Close
End With
End Sub
mcg




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default Version Control in Excel


Użytkownik "David" napisał w wiadomości
...
Excuse my ignorance but where do I type what you have written. What is
Private Sub Workbook.

I'm obviously not very proficient in Excel so please walk me through it.

Thanks
--
David


"Gazeta" wrote:


U?ytkownik "David" napisa3 w

wiadomo?ci
...
I'm working on a large spreadsheet which lets say is work in progress

and
therefore I have to resave it each time it is updated under a

different
name
to distinguish between each saved copy.

Is it possible to set up the Excel file so whenever I go into it it

creates
a new saved file with a dated reference, so I have a full audit trail

(i.e.
historical log) in date order automatically.
--
David


try
Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ActiveWorkbook
.Save
filepath = .Path
.SaveAs filepath & "\your name " & Date & ".xls"
.Close
End With
End Sub
mcg





right click on sheets tab an choose show code
than find in left window ThisWorkbook an double click it
than to right window paste

Private Sub Workbook_BeforeClose(Cancel As Boolean)
With ActiveWorkbook
.Save
filepath = .Path
.SaveAs filepath & "\your name " & Date & ".xls"
.Close
End With
End Sub

than press alt+f11 and save your file
on closing it copy of the file will be saved as well with data stamp
change "your name" to desired one
mcg
if still help needed - write
mcg



  #5   Report Post  
Junior Member
 
Posts: 2
Default

Quote:
Originally Posted by David View Post
I'm working on a large spreadsheet which lets say is work in progress and
therefore I have to resave it each time it is updated under a different name
to distinguish between each saved copy.

Is it possible to set up the Excel file so whenever I go into it it creates
a new saved file with a dated reference, so I have a full audit trail (i.e.
historical log) in date order automatically.
--
David
I am the author of a product called TrackUment (www.trackument.com) which solves the problem you have. After installing it, right click on your spreadsheet in Windows Explorer and select "TrackUment-Save Version" from the popup menu. Enter a comment and your version is saved.

You dont' have to create a copy of your spreadsheet each time it is updated, thereby saving you time and effort and keeping your folders uncluttered.

You can quickly get a list of previous versions of your spreadsheet, again, by just right clicking on the file and selecting an option from the popup menu.
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
unhide menu bar in excel - just disappeared Sean Setting up and Configuration of Excel 12 April 4th 23 10:19 AM
Calendar Control in Excel 2000 can't display date in Excel 2003? Lewis Excel Discussion (Misc queries) 0 April 21st 06 05:07 PM
Need to retrieve a previous version of an excel worksheet NancyDrew Excel Discussion (Misc queries) 1 December 7th 05 10:24 PM
Displaying MS Excel Chart control in ASP.NET Application oursmp Charts and Charting in Excel 0 April 20th 05 04:17 PM
I cant use englisch function names in a swedich version of excel PE Excel Discussion (Misc queries) 2 December 7th 04 01:00 AM


All times are GMT +1. The time now is 08:41 AM.

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

About Us

"It's about Microsoft Excel"