removes the Hide menu item from two shortcut menus: the one that appears when you right-click a row header and the one that appears for a column header. : Menu « Application « VBA / Excel / Access / Word
removes the Hide menu item from two shortcut menus: the one that appears when you right-click a row header and the one that appears for a column header.
Sub RemoveHideMenuItems()
CommandBars("Column").Controls("Hide").Delete
CommandBars("Row").Controls("Hide").Delete End Sub