Right click menu is missing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
Hi paul

Run this macro one time

Sub ResetCellmenu()
With Application.CommandBars("Cell")
.Reset
.Enabled = True
End With
End Sub
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top