Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When I right click on the row numbers and column letters, I do not get the
menu pop up. I had the same issue with not being able to right click on cells and tabs - but got those fixed by resetting code in VBE. Does anyone know code to fix the rows and column menu? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this.
Sub asdfgh() Application.CommandBars("column").Reset Application.CommandBars("row").Reset End Sub Gord Dibben MS Excel MVP On Tue, 20 May 2008 06:46:04 -0700, RSolti wrote: When I right click on the row numbers and column letters, I do not get the menu pop up. I had the same issue with not being able to right click on cells and tabs - but got those fixed by resetting code in VBE. Does anyone know code to fix the rows and column menu? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This enables all commandbars/menus:
Sub EnableAllCBs() Dim CB As CommandBar For Each CB In CommandBars CB.Enabled = True Next End Sub -- Jim "RSolti" wrote in message ... | When I right click on the row numbers and column letters, I do not get the | menu pop up. I had the same issue with not being able to right click on | cells and tabs - but got those fixed by resetting code in VBE. Does anyone | know code to fix the rows and column menu? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
One-click hide or unhide rows & columns | Excel Worksheet Functions | |||
Alt Shortcut from right-click menu | Excel Discussion (Misc queries) | |||
cannot RIGHT click on rows or columns in excel | Excel Discussion (Misc queries) | |||
Can I add a Macro to right-click Menu? | Excel Discussion (Misc queries) | |||
The right click on my mouse does not give me the option to paste | Excel Discussion (Misc queries) |