Hi,
The following code copies any row whether hidden or visible from the column in the code to the sheet "database"
How could it be made to copy only the visible column row?
The following code copies any row whether hidden or visible from the column in the code to the sheet "database"
Code:
InvoiceWks.Range("A16:A" & m).Copy
databaseWks.Range("E" & r & ":E" & (r + m - 16)).PasteSpecial Paste:=xlPasteValues </pre>
How could it be made to copy only the visible column row?