THIS PROBLEM IS DRIVING ME NUTS. HELP! HELP! HELP!

  • Thread starter Thread starter Celvin S. Alleyne
  • Start date Start date
C

Celvin S. Alleyne

THE SPREADSHEET IS NOT LOCKED. YET THE "FORMAT CELL MENU" DOES NOT APPEAR
WHEN I RIGHT CLICK ON THE MOUSE. IT WILL WORK OUTSIDE OF THE SPREADSHEET,
BUT NOT WITHIN THE SPREADSHEET. I WORK WTH THAT SPREADSHEET EVERYDAY AND
HAVE NO IDEA WHAT SUDDENLY CAUSED THE PROBLEM.

I WOULD APPRECIATE YOUR HELP.

THANKS.
 
Celvin,
I almost passed you up, because of the all caps format.
It is difficult to read and is considered shouting.

You may have some add-in or workbook code that has failed to reset the menu.
You could install / uninstall any custom add-ins or open/close any "special"
workbooks and that might fix the problem. or

You can reset the spreadsheet cell right-click pop-up menu with the following code...
'----------------------
Sub ResetSpreadsheetCellMenu()
Application.CommandBars("Cell").Reset
End Sub
'-----------------------
Regards,
Jim Cone
San Francisco, CA
 
Back
Top