Thread: Define a range
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Per Jessen Per Jessen is offline
external usenet poster
 
Posts: 1,533
Default 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