View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Wescotte Wescotte is offline
external usenet poster
 
Posts: 28
Default Skip cells with TAB/SHIFT+TAB but allow arrow keys/mouse selection of skipped cells

I would like to allow the user to skip specific cells/rows/columns by
jumping around a form with the TAB/SHIFT+TAB keys but I would like to
also allow the user to specifically select these skiped cells if they
desire to by using the arrow keys or the mouse.

I am currently using

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)

in order to evaluate the current selection and what should be skipped.

Thanks
Eric