right click does not work to tabs

G

Guest

up until last week, the right click used to work on the tabs along the
bottom. now when i try to right click on the tab, nothing happens. the
mouse works everywhere else, except on the tabs.

issue exists in all areas (new workbook, old workbook/sheet)

jat
 
D

Dave Peterson

Hit alt-f11 to get to the VBE (where macros live)
hit ctrl-g to see the immediate window

Then type this and hit enter:
application.commandbars("ply").enabled = true

Then back to excel to test it.

If it doesn't work, back to the immediate window in the VBE and
type this and hit enter:
application.commandbars("ply").reset

And then back to excel to test it.
 
G

Guest

thank you, second line worked.

jatman

Dave Peterson said:
Hit alt-f11 to get to the VBE (where macros live)
hit ctrl-g to see the immediate window

Then type this and hit enter:
application.commandbars("ply").enabled = true

Then back to excel to test it.

If it doesn't work, back to the immediate window in the VBE and
type this and hit enter:
application.commandbars("ply").reset

And then back to excel to test it.
 

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

Top