Hi edo,
It's possible.
You need to use the Workbook_Activate event of the workbook to re-assign the shortcut key combination to the macro of that workbook.
The code looks like this
Private Sub Workbook_Activate()
Application.OnKey "+^o", "TestShortcuts"
End Sub
In my test example, I created a "TestShortcuts" module in each of the workbooks.
Good Luck
calacuccia
Main Topics
Browse All Topics





by: bruintjePosted on 2002-03-13 at 05:56:51ID: 6860571
Hi Edo, don't know if this is solvable except for opening the workbooks in seperate instances of XL. Or you should add a line in the macro that begins like
ActiveWorkbook.select
etc....rest of the code
HTH:O)Bruintje