![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Guest
Posts: n/a
|
Hi,
I have a sheet where users enter their details. Is there a way, such that, after a user enters data in cell B2, the cell will automatically jump to cell D8? ie. In cell B2 -> Type '12345' -> Press Enter -> In cell D8 Thanks! |
|
|
|
#2 |
|
Banned
Join Date: Feb 2002
Posts: 1,582
|
Hi
Right click on the sheet name tab select "View Code" and paste in this: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$B$2" Then Range("D8").Select End Sub |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|