Thread
:
Excel Macro - next down
View Single Post
#
2
Posted to microsoft.public.excel.misc
Roger Govier
external usenet poster
Posts: 2,886
Excel Macro - next down
Hi Julie
dim lastrow as long, nextcell as string
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
nextcell="A" & lastrow+1
--
Regards
Roger Govier
"julie cooke" <julie
wrote in message
...
We have a model with a macro to automate the process.
The number of rows of data from both lots of input varies each time.
We need to paste the second lot of data below the first lot.
Does anyone know how to select the next cell boelow the last one on
the
first paste?
When we record end down, down the macro uses an absolute cell
reference and
this stops the rest of the macro from working properly.
We've tried find next blank and this goes to the next column.
Reply With Quote
Roger Govier
View Public Profile
Find all posts by Roger Govier