Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need this to look at column "A" Column "B" etc... and copy column "A" just
the data that is in column "A" and paste to Column "C" and do the same for column "B" . This data will be added and subtracted to daily so it must know where the last item in column "A" is and add it to column "C" on the new workbook then copy the data in column "B" and add to the new workbook where the data from column "A" left off. Ok... This is what I have come up with. Sub Macro1() 'If each column has a heading, change the 1's to 2's Dim myRange As Range Set myRange = Range("A1", Range("A1").End(xlDown)) Workbooks.Add Sheets("Sheet1").Activate myRange.Copy Range("C1") Set myRange = Range("B1", Range("B1").End(xlDown)) myRange.Copy Range("C65536").End(xlUp).Offset(1) End Sub This so far is doing what I need it to do by copying column "A" and opening a new workbook and adding to colum "C" in this new workbook, and I think it is trying to copy "B" but I keep receiving the following message "Run-time error 1004 the information cannot be pasted because the copy and paster area are not the same size and shape" I think this is close??? Judd |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
synchronize between sheets | Excel Worksheet Functions | |||
synchronize multiple worksheets | Excel Worksheet Functions | |||
Macro to Synchronize data frm svrl workbooks & columns to 1 workbo | Excel Discussion (Misc queries) | |||
Synchronize pivot tables | Excel Programming | |||
synchronize worksheet in a workbook | Excel Programming |