Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi all,
I am trying to automatically copy a Range and paste this Range at the Bottom in the destination. How do I find the bottom (after the last pasted Range)? The Range size is a known constant. Within the Range, Columns and Data are filled with combinations of Blanks, Text, and Numbers. I'm sure this is an easy problem, but I new to VBA and just learning all the methods/functions available. Thanks for the help. |
#2
![]() |
|||
|
|||
![]()
Try
Worksheets("Sheet1").Range("A65536").End(xlUp).Off set(1, 0).Select "LizzyBorden1369" wrote: Hi all, I am trying to automatically copy a Range and paste this Range at the Bottom in the destination. How do I find the bottom (after the last pasted Range)? The Range size is a known constant. Within the Range, Columns and Data are filled with combinations of Blanks, Text, and Numbers. I'm sure this is an easy problem, but I new to VBA and just learning all the methods/functions available. Thanks for the help. |
#3
![]() |
|||
|
|||
![]()
Find bottom + 1 of column A.
Sub findbottom() ActiveSheet.Cells(Rows.Count, 1).End(xlUp) _ .Offset(1, 0).Select End Sub The idea behind the code is to go down to the bottom of the column then work up until you reach the last filled cell, then drop down to next cell, which is empty. Gord Dibben Excel MVP On Fri, 1 Jul 2005 06:26:03 -0700, LizzyBorden1369 wrote: Hi all, I am trying to automatically copy a Range and paste this Range at the Bottom in the destination. How do I find the bottom (after the last pasted Range)? The Range size is a known constant. Within the Range, Columns and Data are filled with combinations of Blanks, Text, and Numbers. I'm sure this is an easy problem, but I new to VBA and just learning all the methods/functions available. Thanks for the help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
data from one sheet to several in sequential order! | New Users to Excel | |||
Tabs accross of bottom of sheet are not showing | Excel Discussion (Misc queries) | |||
relative sheet references ala sheet(-1)!B11 so I can copy a sheet. | Excel Discussion (Misc queries) | |||
linking multiple sheets to a summary sheet | Excel Discussion (Misc queries) | |||
Naming & renaming a sheet tab | Excel Worksheet Functions |