Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Use a formula to define a range | Excel Discussion (Misc queries) | |||
Define a range of cells in VBA | Excel Discussion (Misc queries) | |||
Looking for code to define a range | Excel Discussion (Misc queries) | |||
Define a range based on another named range | Excel Worksheet Functions | |||
Define Range with an offset | Excel Discussion (Misc queries) |