Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Based on the selction from a drop down box, jump to a cell

I would like the cursur to jump to a column in the current row depending on
what was selected from the drop down box. This is for data entries.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,071
Default Based on the selction from a drop down box, jump to a cell

Something like this perhaps. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
Dim TheCol As Long
If Target.Count 1 Then Exit Sub
'Assuming the DV cell is A1
If Not Intersect(Target, Range("A1")) Is Nothing Then
Select Case Target.Value
Case Item1: TheCol = 3
Case Item2: TheCol = 6
Case Item3: TheCol = 7
'And so forth
End Select
Cells(Target.Row, TheCol).Select
End If
End Sub
"kmoss" wrote in message
...
I would like the cursur to jump to a column in the current row depending on
what was selected from the drop down box. This is for data entries.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Jump to cell based on cell results created by calendar control too JB Excel Discussion (Misc queries) 3 January 15th 08 08:18 PM
JUMP TO PART OF A DROP DOWN LIST pjk@boro Excel Discussion (Misc queries) 3 October 25th 07 03:28 PM
Jump to next cell after selecting from drop down list Sandie Excel Worksheet Functions 8 November 16th 06 04:06 PM
Drop Down - Jump to selection Rosa Excel Worksheet Functions 2 September 30th 05 07:20 PM
How can you jump to a selection in a validation drop-down? javervoo Excel Worksheet Functions 1 July 13th 05 06:08 PM


All times are GMT +1. The time now is 03:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"