milobisconer
New Member
- Joined
- Jan 2, 2016
- Messages
- 4
I use this macro to get to the the next available row in column A. Unfortunately it stops at the last used row. I need it to drop down one more row,
It's been a long time for me coming on this site so I have forgotten how to paste the macro correctly.
Sub FindNextRow()
'
' SeekNextRow Macro
' Go to next row
'
' Keyboard Shortcut: Ctrl+r
'
Range("A1048576").Select
Selection.End(xlUp).Select
End Sub
It's been a long time for me coming on this site so I have forgotten how to paste the macro correctly.
Sub FindNextRow()
'
' SeekNextRow Macro
' Go to next row
'
' Keyboard Shortcut: Ctrl+r
'
Range("A1048576").Select
Selection.End(xlUp).Select
End Sub