+ Reply to Thread
Results 1 to 4 of 4

Copy / paste values

Hybrid View

coolzero Copy / paste values 10-03-2012, 08:12 PM
rylo Re: Copy / paste values 10-03-2012, 08:30 PM
coolzero Re: Copy / paste values 10-04-2012, 11:30 AM
rylo Re: Copy / paste values 10-04-2012, 07:23 PM
  1. #1
    Registered User
    Join Date
    11-10-2009
    Location
    manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    83

    Copy / paste values

    Hello,

    I need help in VBA. I know this is very simple but i am not familiar with the codes.

    In a blank cells for example is B2 to B10. If i type something in any of the cells, i need a timestamp on C column corresponds to the rows where they typed. I was able to do it in excel but it refreshes whenever the file or formula had been refresh.

    Thanks.

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Copy / paste values

    Hi

    Try a sheet event macro

    Private Sub Worksheet_Change(ByVal Target As Range)
      On Error GoTo prob
      Application.EnableEvents = False
      If Intersect(Target, Range("B2:B10")) Then
        Target.Offset(0, 1).Formula = "=now()"
        Target.Offset(0, 1).NumberFormat = "dd/mm/yy hh:mm:ss"
        Target.Offset(0, 1).Value = Target.Offset(0, 1).Value
      End If
    prob:
      Application.EnableEvents = True
      
    End Sub
    rylo

  3. #3
    Registered User
    Join Date
    11-10-2009
    Location
    manila, philippines
    MS-Off Ver
    Excel 2007
    Posts
    83

    Re: Copy / paste values

    Sorry Rylo, i really cant encode vb codes. can you please attach a sample file or worksheet? thank you so much!!!

  4. #4
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591

    Re: Copy / paste values

    Hi

    Open a blank new workbook, right click on the sheet tab, select view code, then paste in the code from #2. Now go back to the sheet, and enter something in B2. It should put in the date / time stamp into C2.

    rylo

+ 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