• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Right Click Menu option got disabled

Shivinder Kaushal

New Member
Dear Chandoo,

Please assist me as i am unable to enable right click menu option in excel 2007. I have faced this issue after receiving macro enabled excel file. Now cut.copy,paste and paste special function is in disabled status.
So kindly help me in resolving this issue.

Regards
Shivy
 
Have you looked within the code for the macro-enabled workbook? It could be as simple as having some code in there that looks like this:
Code:
Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub
 
Have you looked within the code for the macro-enabled workbook? It could be as simple as having some code in there that looks like this:
Code:
Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
End Sub

Thanks Luke for addressing my concern.

I have already commented all such codes in VBA sheet but still its not working. Is there any code which i add in new excel and resolve this issue.
 
Back
Top