move one cell down

H

H. Nissen

Hi, I need to make a macro who can move one cell down from the active cell
and make this cell active. ex: active cell = C1 => new active cell C2.

I hope some of your hard guys can help me with this problem.
 
B

Bernie Deitrick

ActiveCell(2).Select

but there is rarely ever any need to select a cell.

HTH,
Bernie
MS Excel MVP
 
F

FSt1

hi
from you example, i'm having a problem understanding what your are trying to
do.
but..
Activecell.offset(1,0).select

not sure if this helped. post back with more info on what your are doing.

regards
FSt1
 
H

H. Nissen

Hi, This form works, thx: '
ActiveCell.Offset(1, 0).Select
Selection.Copy

I have to use it, to copy values from a excell sheet into an other
application. With this macro, I do not have to mark and copy every 1240 cpr's
manually :)

But thx for the help to make this macro.

"Bernie Deitrick" skrev:
 
H

H. Nissen

Hi, This form works, thx: '
ActiveCell.Offset(1, 0).Select
Selection.Copy

I have to use it to copy values from a excell sheet into another
application. With this macro, I do not have to mark and copy every 1.240
cpr's manually :)

But thx for the help to make the macro.

Mvh Hans

"Bernie Deitrick" skrev:
 
J

Jacob Skaria

As Bernie mentioned you dont need to select to copy. You can copy without
selecting the cell

ActiveCell.Offset(1, 0).Copy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top