+ Reply to Thread
Results 1 to 8 of 8

Copying Info From One Sheet & Posting Below Info on Another Sheet

  1. #1
    Registered User
    Join Date
    12-10-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    6

    Copying Info From One Sheet & Posting Below Info on Another Sheet

    After months of searching for a solution...I have yet to discover one that works. Here is my VBA problem:

    Copy information from cells A5 to N37 from a sheet titled "Exam"

    Paste the information onto sheet titled "Copies"

    As the process repeats by means of pressing a button, all new information from cells A5 to N37 on sheet "Exam" must paste below any information contained on the sheet titled "Copy". (This way the information being pasted does not write over any previous information)


    So after the first click:

    "Exam" A5:N37 are transfered to "Copies" A5:N37

    On the next click:

    "Exam" A5:N37 are transfered below to "Copies" A38:N70

    Etc.

    Etc.

  2. #2
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    Maybe:

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    12-10-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    6

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    Unfortunately, each paste copies directly over the last one

    I need the paste to go below in order for the information above to be preserved.

  4. #4
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    Thats what it should be doing. Unless Column A on Sheets("Copies") is empty?

  5. #5
    Registered User
    Join Date
    12-10-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    6

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    I have the macro assigned to a button on Sheet "Exam"

    Copies is originally blank

    Every time a hit the button on "Exam"

    The info keeps pasting over the first set of information on "Copies". It never shifts down.

  6. #6
    Registered User
    Join Date
    12-10-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    6

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    This gets me really close....But the info continuously pastes above and not below

    Sub CopyOver()

    Application.ScreenUpdating = False
    For j = 5 To 38 'Or however many rows u have
    On Error GoTo Err_Execute
    Sheets("Exam").Rows(j).Copy
    Sheets("Copies").Rows(j).Insert Shift:=xlDown

    Next j
    Application.ScreenUpdating = True


    Err_Execute:
    If Err.Number = 0 Then MsgBox "Data Recorded" Else _
    MsgBox Err.Description


    End Sub

  7. #7
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    Maybe:

    Please Login or Register  to view this content.

  8. #8
    Registered User
    Join Date
    12-10-2013
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    6

    Re: Copying Info From One Sheet & Posting Below Info on Another Sheet

    This still does not get the results I need. The ongoing issue is always that every time the information is copied and pasted the original information shifts down and the new information is pasted above and not below. This seems like an easy fix, but I am truly baffled.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copying info from one sheet(workbook) to another
    By denfan in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-29-2013, 05:33 PM
  2. Replies: 1
    Last Post: 03-11-2013, 05:37 AM
  3. Automatically copying info from one sheet to another
    By alexBLAYZA in forum Excel General
    Replies: 1
    Last Post: 02-28-2013, 09:20 PM
  4. Copying Info from Sheet 2 & Sheet3 to Sheet 1
    By Elegidos in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 11-13-2009, 06:38 AM
  5. Replies: 3
    Last Post: 05-04-2007, 03:44 PM

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