View Single Post
  #2   Report Post  
Earl Kiosterud
 
Posts: n/a
Default

Put this in the sheet module:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static ColOld As Integer
If Target.Column = 1 And ColOld 1 Then Beep
ColOld = Target.Column
End Sub
--
Earl Kiosterud
mvpearl omitthisword at verizon period net
-------------------------------------------

"myfather" wrote in message
...
I want to know (via an event sound) that my cursor movement has bumped the
left edge of the spreadsheet. I am entering thousand of rows of data, and
it
would help if there was a event sound when I returned the cursor to the
left
edge. I have this feature in 123, and find it helpfull.