+ Reply to Thread
Results 1 to 2 of 2

auto copy old data to new cell

  1. #1
    walt007
    Guest

    auto copy old data to new cell

    How does one automate the copying of old data in cell A to cell B when new
    data is entered in cell A?

  2. #2
    bigwheel
    Guest

    RE: auto copy old data to new cell

    It's not strictly possible to achieve this because entering new data into a
    cell destroys the old data but you could use something like the following
    which copies the existing data on selection of the required cell before you
    type new data in.

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Select Case Target.Column
    Case 1
    If ActiveCell.Value > "" Then
    ActiveCell.Offset(0, 1).Value = ActiveCell
    End If
    Case Else
    End Select
    End Sub

    "walt007" wrote:

    > How does one automate the copying of old data in cell A to cell B when new
    > data is entered in cell A?


+ 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