+ Reply to Thread
Results 1 to 2 of 2

Adding a date stamp to each cell in column - after the fact

  1. #1
    joe54345@gmail.com
    Guest

    Adding a date stamp to each cell in column - after the fact

    I'm looking to add the date to the end of the text of each cell in a
    column after - or before - the information has been pasted from a word
    document.


  2. #2
    Jim May
    Guest

    RE: Adding a date stamp to each cell in column - after the fact

    The below code pasted into your particular Sheet module
    only affects anything you paste into Column A of Excel.


    Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    If Not Application.Intersect(Range("A:A"), Target) Is Nothing Then
    Target.Value = Target.Value & "-" & Date
    End If
    Application.EnableEvents = True
    End Sub

    "joe54345@gmail.com" wrote:

    > I'm looking to add the date to the end of the text of each cell in a
    > column after - or before - the information has been pasted from a word
    > document.
    >
    >


+ 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