View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
William[_2_] William[_2_] is offline
external usenet poster
 
Posts: 227
Default Prevent multiple cell select

Hi Spaan

Try placing the code below in a worksheet module...

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveCell.Select
End Sub


--
XL2002
Regards

William



"Spaan" wrote in message
...
| Is it possible to prevent a user from selecting more than one cell at a
time?