Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
a a is offline
external usenet poster
 
Posts: 51
Default Can't think tonight - for a friend, can you help?

Helloooo....

I'm sure there's an easy way to get what we need, but I can't figure it out.

I would like a cell formatted to reflect the last date a revision was made
to our spreadsheets.

We don't need to track the changes that were made, just the date of the last
revision.


Is this possible?



Thanks for your help.
Cheryl


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Can't think tonight - for a friend, can you help?

One cell on each sheet, or just one cell for the whole workbook?

Are you OK with just tracking the fact that one or more changes have
been made, even if the changes were later (before saving) undone?

Try placing this in the "Thisworkbook" module. Adapt to suit.

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As
Range)
Dim sVal As String
Static bProcessing As Boolean

If bProcessing Then Exit Sub

If Target.Cells.Count = 1 Then sVal = " New value " & Target.Value
bProcessing = True
ThisWorkbook.Sheets("Sheet1").Range("A1").Value = _
Format(Now, "mmm dd yyyy:hh mm ss") & " " & _
Sh.Name & " " & Target.Address & sVal
bProcessing = False



End Sub




Tim.

"a" wrote in message
ink.net...
Helloooo....

I'm sure there's an easy way to get what we need, but I can't
figure it out.

I would like a cell formatted to reflect the last date a revision
was made
to our spreadsheets.

We don't need to track the changes that were made, just the date of
the last
revision.


Is this possible?



Thanks for your help.
Cheryl




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
Is anyone else have problems with this web site tonight? ShaneDevenshire Excel Worksheet Functions 3 October 28th 08 04:41 PM
trying to help a friend new2this New Users to Excel 1 May 6th 07 07:56 AM
Help tonight?!! select rows based on cell value in a column Lighthouse1 Excel Worksheet Functions 1 January 31st 07 02:57 AM
combined HLOOKUP (urgent for a friend) tom ossieur Excel Worksheet Functions 6 August 9th 06 03:56 PM
just broke up with girl friend we had puter together daniel_in_despert_need_of_excel Excel Programming 2 December 6th 04 04:24 AM


All times are GMT +1. The time now is 05:17 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"