Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can anyone tell me the proper code to copy a range in one worksheet to the
first available empty row in another worksheet? Thanks! CB |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
dim s as worksheet
set s=thisworkbook.sheets("othersheet") thisworkbook.Range("A2:M2").copy _ s.cells(s.rows.count,1).end(xlup).offset(1,0) -- Tim Williams Palo Alto, CA "Steel Works, Inc." wrote in message ... Can anyone tell me the proper code to copy a range in one worksheet to the first available empty row in another worksheet? Thanks! CB |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
code to copy range | Excel Worksheet Functions | |||
Proper code | Excel Programming | |||
Code to copy formula to variable range | Excel Programming | |||
VBA Proper Case Code | Excel Programming | |||
Code to copy range vs Copy Entire Worksheet - can't figure it out | Excel Programming |