View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default is there a way to get the right click edit menu in Excel 2003?

Try

Sub ResetCellMenu()
With Application.CommandBars("Cell")
.Reset
.Enabled = True
End With
End Sub

HTH,
Bernie
MS Excel MVP


"user" wrote in message
...