View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Robert[_14_] Robert[_14_] is offline
external usenet poster
 
Posts: 11
Default Data from multiple variable length columns to one column

Many thanks for the speedy responses

Robert

In message , Robert
writes
I would like to copy and paste 93 variable length columns into one
continuous column. I understand that I can use the following to locate
the first unused cell and paste the copied columns data:
Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues

I imagine that what I need is some form of loop to pick up the data in
the 93 columns.

Grateful for any advice