Results 1 to 5 of 5

Problem updating audit trail

Threaded View

  1. #1
    Registered User
    Join Date
    02-13-2012
    Location
    Dublin
    MS-Off Ver
    Excel 2010
    Posts
    22

    Question Problem updating audit trail

    Hi,

    I am new to the forum and I am looking for some help please.

    I am building an application to manage project resources in Excel 2003 using VBA. I will be sharing the sheet with managers and allowing them to make changes but I want to have an audit trail of what they have changed.

    On one sheet I have a table of projects consisting of 10 columns and n rows. I have a 'Projects' range defined on the 1st column and a 'ProjAuditInfo' range defined on the 10th column.

    I have been able to get the auditing to work up to a point using the worksheet change event with an offset from the target cell of (0, 9) which updates Column 10. See below for the code I have been using :

    Private Sub Worksheet_Change(ByVal Target As Range)
    
     'update the audit log if there is a change to any single cell in the Projects range
       With Target
         If .count > 1 Then Exit Sub
            If Not Intersect(Range("Projects"), .Cells) Is Nothing Then
                Application.EnableEvents = False
              
                With .Offset(0, 9)
                     .Value = Application.UserName & " " & Format(Date, "dd/mm/yy") & " " & Format(Time, "hh:mm")
                End With
              
                Application.EnableEvents = True
            End If
        End With
    
    End Sub
    This works fine to track if any single cells have been changed but only in the Projects range (Col 1).

    My problem though is that I want to extend the target range to include additional contiguous columns in the table (not just column 1) but I still want to have the audit log updated in col 10 (ProjAuditInfo).

    I have tried several things to try to get this to work and I haven't been able to find an answer to this problem in any of the forums. All of the worksheet change solutions seem to assume that a single column is being checked.

    So I need some help to come up with the code that will take the target cell from anywhere in the expanded range (let's call this "ExpProjects") and go over to the same row on the "ProjAuditInfo" range and update this cell only with the relevant audit info.

    I would be very grateful for any help with this problem,

    Many thanks,


    gtol
    Last edited by gtol; 02-14-2012 at 07:27 AM. Reason: Code tags inserted - sorry for not doing this first time around !

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