View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
dkinn dkinn is offline
external usenet poster
 
Posts: 30
Default Copying Column in R1C convention

assuming you want to copy the entire column from the activeworksheet

n = 3
Columns(n).Copy

or

n = 3
Sheets("Sheet2").Columns(n).Copy

if it is not the active sheet

or you could add workbooks("bookname") if it is in another workbook

hope this helps

David
"Barb Reinhardt" wrote:

I know I want to copy column N on a specific worksheet name where N is
variable and is a number (column 2, 5, 8, whatever). How do I write the
code to copy that column?

Thanks,