View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jasper Jasper is offline
external usenet poster
 
Posts: 18
Default Adding Data at the End of a excisting Collum

I want to add data from a file of which the content changes every day, into
an other file in which a database is allready implanted.

To go short, how can I insert data from a collum beneath the allready
available data?

For now I use this code:

Windows("Bron.xls").Activate
Range("A2:A109").Select
Selection.Copy
Windows("Kostenbeheerssysteem Vorm I 3 februari 2005.xls").Activate
Range("C27:C134").Select
ActiveSheet.Paste

Thanks in advance!