Copy/pasting visible rows using macro?

Closed
krock - Apr 17, 2010 at 12:42 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Apr 17, 2010 at 05:57 AM
I am trying to use the 'record new macro' which is all I have experience with. My objective is to filter out rows by a date on my spreadsheet and copy those visible rows into another tab (tab 2) on the same workbook. I want to be able to filter different dates and do this several times and have a running list on tab 2. So when I copy my next set of rows, they will paste above or below what is already there on tab 2. Can you help?

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Apr 17, 2010 at 05:57 AM
Depends where you are pasting. If you intentionally pasting over it, of course it will be wiped out. Since you want to do it in a running manner, before you paste next time, you need to know where you ended last time

lmaxrows =sheets("my running total").cells(rows.count, "A").end(xlup).row

will give you last used row in column A

Also when you copy, copy from 2nd row and down, else you would be pasting header every time too.
0