Macro error

F

Father John

Hi I am trying to record a simple macro where if I press alt+d the location
moves 7 "page down" key strokes - about 100 rows.
However when I record the macro it resorts back to the line number that my
macro originally ended up at 7 keystrokes from the top., even if I am 1500
lines down.
How can I resolve this?

With thanks
Stephen
 
M

Mike H

Hi,

I'm a bit dubious of statements like
moves 7 "page down" key strokes - about 100 rows.

particularly in relation to code which doesn't normally deal in 'abouts',
it's generally more precise than that. However how about running this with
you ALT +D shortcut

Sub Move_Down()
ActiveCell.Offset(100).Select
End Sub


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 

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

Similar Threads

Macro problems 3
The Relative Macro 6
Macro for data and time 2
writing a sort macro 2
How to create a macro to delete multiple rows? 4
Help w/ getting F2 into a macro 3
Macro Help 3
Macro to extend formulas 4

Top