Hi
Go into Tools, Macros, Visual Basic Editor. In the Project Explorer
Window on the left look for your excel file and double click the sheet
name where you want to enter data. In the blank code module that
appears paste this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("G:G"), Target) Is Nothing Then
Target.Offset(1, -5).Activate
End If
End Sub
regards
Paul
On Oct 2, 2:11 pm, Mekinnik <Mekin...@discussions.microsoft.com>
wrote:
> Lets say I have a worksheet with columns from A-G, when I enter a value into
> column G I would like the cursor to move down 1 row and return to column B.
> this would speed up my ability to enter my data in.
|