Results 1 to 5 of 5

Auto Fill Cell Value added by "Copy N Paste"

Threaded View

  1. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Auto Fill Cell Value added by "Copy N Paste"

    Try this:
    Private Sub Worksheet_Change(ByVal Target As Range)
        Dim r As Range
        Dim cell As Range
        
        Set r = Intersect(Target, Columns("I"))
        If r Is Nothing Then Exit Sub
        
        Application.EnableEvents = False
        For Each cell In r
            Cells(cell.Row, "J") = Environ("username")
            Cells(cell.Row, "K") = Now
        Next cell
        Application.EnableEvents = True
    End Sub
    Last edited by shg; 05-01-2009 at 12:48 PM. Reason: bug!
    Entia non sunt multiplicanda sine necessitate

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