View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
tod tod is offline
external usenet poster
 
Posts: 114
Default general validation question

There are no events associated with Data Validation lists.
However, you can use the Worksheet Change event, like this:

'Assuming your list is in cell B2, this will make cell
'B10 the active cell.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$2" Then
ActiveSheet.Range("B10").Activate
End If
End Sub

tod

-----Original Message-----
I was thinking of using the validation (list) in a
spreadsheet but before I get started there are a few
questions.
1) if using the list, is it possible to have language so
the activecell moves to another cell when the validation
is selected?
2) to go along with #1, can language be used with a
validation at all?
3) if coding language can be used with a validation, can
you give an example to get me started?
Thank to anyone who responds.
*** John
.