Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Formulas cannot make the cursor "jump" to another cell.
You would need event code to move the cursor. A1 has your dropdown and J1 is where you want to enter the comments. Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Me.Range("A1")) Is Nothing Then Exit Sub Application.EnableEvents = False On Error GoTo endit If Target.Value = "other" Then MsgBox "Please enter comments in J1" Me.Range("J1").Select End If endit: Application.EnableEvents = True End Sub This is sheet event code. Right-click on the sheet tab and "View Code" Copy/paste the code into that sheet module. Gord Dibben MS Excel MVP On Wed, 30 Jan 2008 06:32:00 -0800, Peggy wrote: Hi, I have set up a list in data validation. One of the options is 'other'. I have locked the spreadsheet, apart from the cells I would like the user's to populate. What I would like to do is have the cursor jump to another section of the spreadsheet where they can write more comments about this 'other' option. Can you help? Kind regards, Peggy |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Data point on line is not over the point/tick in X axis... | Charts and Charting in Excel | |||
Introduce Value in a cell with formula, option | Excel Discussion (Misc queries) | |||
How do I display chosen filter in a cell below | Excel Worksheet Functions | |||
put a result into a chosen cell | Excel Discussion (Misc queries) | |||
How do I let only one box be chosen when there are several? | Excel Worksheet Functions |