Right click menu is missing

P

PA

In the past, I could right click a cell, get a menu and insert a row or column.
That menu seems to have disappeared?
Can anyone tell me how to get it back?

Paul
 
R

Ron de Bruin

Hi paul

Run this macro one time

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

PA

Thanks, this did the job.

Ron de Bruin said:
Hi paul

Run this macro one time

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