Results 1 to 3 of 3

Date stamp in absolute column

Threaded View

  1. #1
    Registered User
    Join Date
    11-06-2008
    Location
    UK
    Posts
    2

    Date stamp in absolute column

    Ok, I've got a sheet with lots of columns. Each time someone makes a change in any row of any one of those columns, I want it to date stamp it in an extra column on the end so we always know who made the last change to each row and when. The actual entering of the data isn't a problem, the problem I'm having is getting it to always put the data stamp in the right column or row.

    The code I've got is :-

    If Target.Cells.Count > 1 Then Exit Sub
            If Not Intersect(Target, Range("A2:D100")) Is Nothing Then
                With Target(1, (10 - ActiveCell.Column))
                    .Value = Date
                    .EntireColumn.AutoFit
                End With
            End If
    Which is great if the user presses Enter after typing, but if they press the left or right arrows, the datestamp appears one cell to the left or right of where it's supposed to be. I'm sure it's simple to make it an absolute column but it's doing my head in.

    Thanks!
    Last edited by VBA Noob; 11-06-2008 at 09:22 AM.

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