+ Reply to Thread
Results 1 to 3 of 3

Using a macro to copy current row to another sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    04-06-2004
    Posts
    7

    Using a macro to copy current row to another sheet

    Hello,

    Macro rookie here...

    I am trying to make a macro that will select the current row that the cursor is on in sheet 1, copy it, and paste it on sheet 2.

    For some reason when I do this and then run the macro, it is copying the an absolute row from the first sheet and copying it to the second sheet...It is not selecting the row that the cursor is on...Any ideas???

    Thanks for the hand...

    Mike

  2. #2
    Registered User
    Join Date
    04-06-2004
    Posts
    7

    Unhappy No answer to a simple question??

    How come there is no answer to this simple question?? I am sitting here not knowing if no one is interested in helping out, of if I posted this request incorrect??

    Hmmmmm

  3. #3
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    Sub Macro1()
    ActiveCell.EntireRow.Copy Sheets("sheet2").Cells(1, 1)
    End Sub

    this places it in cell a1 (or row 1) on sheet 2
    not a professional, just trying to assist.....

+ 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