![]() |
Define a range
Sheets("New").Range("A:AC" & lRow).Copy
I thought that this would work but it does not. I want to copy a range that is A through AC on row LROW. Any thoughts? Thanks, Jay |
Define a range
Hi
fRow = 1 lRow = 10 Sheets("New").Range(Cells(fRow, "A"), Cells(lRow, "AC")).Copy Regards, Per "jlclyde" skrev i meddelelsen ... Sheets("New").Range("A:AC" & lRow).Copy I thought that this would work but it does not. I want to copy a range that is A through AC on row LROW. Any thoughts? Thanks, Jay |
Define a range
Try
Sheets("New").Range("A" & lRow & ":AC" & lRow).Copy Hope this helps, Hutch "jlclyde" wrote: Sheets("New").Range("A:AC" & lRow).Copy I thought that this would work but it does not. I want to copy a range that is A through AC on row LROW. Any thoughts? Thanks, Jay |
All times are GMT +1. The time now is 01:39 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com