Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Good afternoon;
I have a slight problem with the Copy and Paste keyboard shortcut on my work computer. It seems that after a couple of "cntrl copy" and "cntrl paste" operations on a spreadsheet, Excel wants to paste an image of the spreadsheet in the cell rather then the cell values or formula to be pasted. I was told earlier that one of my macros may be using the "cntrl paste" shortcut on the keyboard to perform another function. I have almost 200 macros. Is there an easy way to identify the shortcut key that may have been set-up in a macro. I avoid using shortcut keys in my macros always, but somehow, the copy paste shortcut must have become associated with one of them. Thanks Phil |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Phil,
To reset the Excel Shortcuts to their original functions, just start a new code module and run these lines of code: ------------------------------ Sub Reset() Application.Onkey "^c", "" Application.Onkey "^v", "" End Sub ----------------------------- Please let me know how you go. SuperJas. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"AuthorizedUserPF" wrote in message ...
Good afternoon; I have a slight problem with the Copy and Paste keyboard shortcut on my work computer. It seems that after a couple of "cntrl copy" and "cntrl paste" operations on a spreadsheet, Excel wants to paste an image of the spreadsheet in the cell rather then the cell values or formula to be pasted. I was told earlier that one of my macros may be using the "cntrl paste" shortcut on the keyboard to perform another function. I have almost 200 macros. Is there an easy way to identify the shortcut key that may have been set-up in a macro. I avoid using shortcut keys in my macros always, but somehow, the copy paste shortcut must have become associated with one of them. Thanks Phil Hi Phil Try this addin that will list the Short cut keys for Macros http://www.xcelfiles.com/GetShortCutKeys.html |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks will do.
"SuperJas" wrote in message ... Hi Phil, To reset the Excel Shortcuts to their original functions, just start a new code module and run these lines of code: ------------------------------ Sub Reset() Application.Onkey "^c", "" Application.Onkey "^v", "" End Sub ----------------------------- Please let me know how you go. SuperJas. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks this will definitely come in handy. "Ivan F Moala" wrote in message om... "AuthorizedUserPF" wrote in message ... Good afternoon; I have a slight problem with the Copy and Paste keyboard shortcut on my work computer. It seems that after a couple of "cntrl copy" and "cntrl paste" operations on a spreadsheet, Excel wants to paste an image of the spreadsheet in the cell rather then the cell values or formula to be pasted. I was told earlier that one of my macros may be using the "cntrl paste" shortcut on the keyboard to perform another function. I have almost 200 macros. Is there an easy way to identify the shortcut key that may have been set-up in a macro. I avoid using shortcut keys in my macros always, but somehow, the copy paste shortcut must have become associated with one of them. Thanks Phil Hi Phil Try this addin that will list the Short cut keys for Macros http://www.xcelfiles.com/GetShortCutKeys.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Keyboard Shortcut to toggle b/w Find and Replace and ActiveWorksheet? | Excel Discussion (Misc queries) | |||
keyboard shortcut for a macro | Excel Worksheet Functions | |||
Keyboard Shortcut in Macro | Excel Discussion (Misc queries) | |||
Keyboard shortcut not working when I copy macro to another computer | New Users to Excel | |||
A good macro that works wrong with keyboard shortcut | Excel Programming |