View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default How do I direct cursor to a specific cell?

You could use a worksheet_change event in the sheet module
if target.address="$F$4" then range("e6").select
etc

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Sandman" wrote in message
...

In Microsoft Excel - Upon completion of entry in cell F4 I want cursor to
go
to cell E6; then to H4; then to G6, etc.