Removing a hyperlink when right click doesn't open shortcuts?

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

Guest

Can someone help me with this? It is a Train and Assess IT program question
on a module. For whatever reason, the right click does not bring the
shortcut menu down.


Thanks!
 
If right-click does not work:

1. move to the cell with the arrow keys
2. in the formula bar, insert a single quote (apostrophe) before the link
 
Does the right-click menu drop down when other cells are selected or just this
one cell?

You may have to reset the r-click menu.

Hit ALT + F11 to go to the VBEditor.

Then View>Immediate Window.

Copy/paste this line into the window and hit <enter>

Application.CommandBars("Cell").Enabled = True

OR copy/paste this sub to a module and run it.

Sub reset()
Application.CommandBars("Cell").Enabled = True
End Sub


Gord Dibben MS Excel MVP
 
Thank you so much! By using the arrows, I was able to complete the exercise
successfully. I REALLY appreciate the help!!!!


Steve
 

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