+ Reply to Thread
Results 1 to 2 of 2

Tracking Edit changes

Hybrid View

  1. #1
    Registered User
    Join Date
    05-14-2008
    Posts
    3

    Tracking Edit changes

    Hi,

    I would like to add a "last date changed" column to a worksheet. I would like to populate the column with the date a user made the last change to any cells in that row. The dates would be row independent and keyed off any changes within the row. Is there... a formula/fct that can be used?

    Thanks in advance.

    Rusty

  2. #2
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161
    Hi i have set the column for the date/time stamp as column F but change to suit!, if you just select a cell or move cells nothing happens but change a cell and the date stamp appears!
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Cells.Count > 1 Then Exit Sub
    Range("F" & Target.Row).Value = Now()
    End Sub
    The code goes in the worksheet module, right click the sheet tab and choose view code and paste this in!
    Not all forums are the same - seek and you shall find

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1