hi all,
i have an issue with copying 15 rows (per sheet) of data from three different sheet.
The reason is because each of the three sheets is filtered using auto filter and so row 1, 3 5 whatever may not be visible. so icant just copy a pre set range.
i have found lots of vba script on copying row 1 to 15 but i cant get it to work.
so basically i want to have a summary sheet which grabs the top 15 results in sheets 1 2 and 3 and pastes the data automatcially into the sheet called summary.
i had something like
Sub CopyRows()
Sheets("30 Days").Select
' Find the last row of data
FinalRow = Range("A65536").End(xlUp).Row
' Loop through each row
For x = 2 To FinalRow
' Decide if to copy based on column H
Sheets("30 Days").Select
Range("A" & x & ":I" & x).Copy
Sheets("Summary").Select
ActiveSheet.Paste
Next x
End Sub
but it doesn't work.
it just flickers for ages then stops and has copied nothing. i know its wrong but i aint really good at this.
would apprecaite any help
Cheers
Joel
Bookmarks