Results 1 to 3 of 3

Copy Data from Sheet One to Next available row on Sheet Two based on Indicator "Complete"

Threaded View

  1. #1
    Registered User
    Join Date
    06-28-2016
    Location
    Atlanta, GA
    MS-Off Ver
    Office 2016
    Posts
    7

    Copy Data from Sheet One to Next available row on Sheet Two based on Indicator "Complete"

    Afternoon All!!!!

    Brand new to the forum. As they say on the Radio "Long time listener, first time caller"

    I am trying to incorporate a new idea into an existing workbook to cut down on some manual work time using a macro. I created a basic one, but it is not to where I need it, and I've found myself stuck for a few hours now.

    I have data on Sheet 1 (School Schedule) in Cells A-N. Cell N is going to be the key indicator in which it indicates if the row is going to be copied to the next available Sheet with the word "Complete"

    The sheet it will have to be pasted to is called "Data". This sheet already exists and currently has 300+ rows of data that have been manually entered. I want the data to be copied to the next available row

    Here are the kickers.

    This School schedule sheet be continually filled out with new data weekly/monthly. I would like it to ignore the rows it has already copied over (Might be easiest just to add to the drop down list in cell N with another indicator for personal use)

    I only need to copy the first say 6-7 (A-G) columns for each row and post it to the new sheet in (I-O)

    Summary
    Sheet that has data to be copied: School Schedule
    Sheet that needs to have data pasted: Data
    Key Indicator: Complete
    Cells need to be copied: A-G
    Cells that need to be pasted into: I-O
    Data will continually be updated on School Schedule and I would like to ignore those that are already copied over.


    Here is my current Macro
    Sub Stats()
    
    Application.ScreenUpdating = False
    
    Dim NextRow As Range
    Set NextRow = Sheets("Data").Cells(Cells.Rows.Count, 1).End(xlUp).Offset(1, 0)
    Sheets("School_Schedule").Range("A2:G26").Copy
    NextRow.PasteSpecial (xlValues)
    
    
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
    End Sub
    Thank you in advance for any help!!!
    Last edited by Jlopez21887; 06-28-2016 at 03:48 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Looping thru rows and copy cell values from "Inputs" sheet to "Output" sheet
    By hariexcel1987 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-02-2015, 11:32 PM
  2. Script not copying data from "Emails" sheet to "New Sheet" - Run time error: Object
    By methuselah90 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-08-2014, 03:22 PM
  3. [SOLVED] Code that copies row of data to another sheet based on text "Complete"/"Delete"
    By Dremzy in forum Excel Programming / VBA / Macros
    Replies: 17
    Last Post: 04-20-2014, 05:51 PM
  4. Replies: 2
    Last Post: 04-20-2014, 11:18 AM
  5. Using the "Get external date from Web" function to complete a database sheet
    By mielie007 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-19-2013, 04:56 AM
  6. Replies: 3
    Last Post: 05-31-2013, 05:16 AM
  7. Enter Data on "Main" or "Input" Sheet and Copy to One of Many Other Sheets
    By timothy_no7 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-21-2012, 07:29 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