Hi yamaharm,
Amend the following as required:
Worksheet_BeforeRightClick
The following EVENT subroutine will invoke the macro named in the cell upon a right click. Since the macro is for a specific worksheet, we can be very specific as to which column this will apply to.&nsp; As in the previous example there are escapes if not in the correct area.
Private Sub Worksheet_BeforeRightClick(ByVal Target _
As Excel.Range, Cancel As Boolean)
'to install -- rightclick on the sheettab of the corresponding
' sheet and choose 'view code'. Paste the following procedure
' in the module.
'RightClick on cell in column C will invoke macro in that cell
If Target.Column <> 3 Then Exit Sub
If Target.Row = 1 Then Exit Sub
On Error Resume Next
'MsgBox ActiveCell.Value
Application.Run ActiveCell.Value
Application.Run "testng2k.xls!" & ActiveCell.Value
Cancel = True 'prevents normal RClick menu from appearing
End Sub
Taken from this site :
http://www.mvps.org/dmcritchie/excel/excel.htm
Hope that helps,
Richie