View Single Post
  #5   Report Post  
R.VENKATARAMAN
 
Posts: n/a
Default

right click sheet tab and click view code
in the new window on the left side select worksheet
ignore the default code coming up
introuce this code

Private Sub Worksheet_Change(ByVal Target As Range)
ActiveCell.Offset(1, 0).Select
End Sub

note <change not <selection change

now go to sheet 1(or any sheet ) and select the cell which has the
validation.
as soon as you select one of the valid list the cursor automatically will go
to next below cell

change code to suit you
hope this works for you
mine excel 2000 windows 98SE

--
remove $$$ from email addresss to send email
=======================

Mike in Bangkok <Mike in wrote in message
...
I have limited data entry in validation to one character. Now i want that

the
moment the one character is entered the cusrser to jump to the next cell.
How ?
Also - how to i limit data entry to letters only ? I can see only text in
validation - but that allows numbers as well.