Seems like this should be something simple, but apparently it's not, or I'm badly overlooking it.
In Excel 2007, I just create a VBA procuedure which I wanted to test and set to a button in the quick access toolbar. Well, I created the code, but it doesn't show in the Macros list.
According to this article:
It sounds like if the code includes a parameter, then it won't show in that list. Well, this code doesn't include any parameters. Also, I tried compiling, saving everything, closing and reopening Excel.
The code is in the Modules section of my PERSONAL.XLS worksheet... is it also possible that I need to resave my PERSONAL.XLS worksheet to PERSONAL.XLST for some of the code to show up in my Macros list?? The reason its in XLS format is b/c I just copied up the PERSONAL.XLS from when I used Office 2003.
Thanks for any advice/suggestions/references/jabs.![[wink] [wink] [wink]](/data/assets/smilies/wink.gif)
--
"If to err is human, then I must be some kind of human!" -Me
In Excel 2007, I just create a VBA procuedure which I wanted to test and set to a button in the quick access toolbar. Well, I created the code, but it doesn't show in the Macros list.
Code:
Private Sub PasteSpec_Values()
Selection.PasteSpecial Paste:=xlPasteValues
End Sub
According to this article:
It sounds like if the code includes a parameter, then it won't show in that list. Well, this code doesn't include any parameters. Also, I tried compiling, saving everything, closing and reopening Excel.
The code is in the Modules section of my PERSONAL.XLS worksheet... is it also possible that I need to resave my PERSONAL.XLS worksheet to PERSONAL.XLST for some of the code to show up in my Macros list?? The reason its in XLS format is b/c I just copied up the PERSONAL.XLS from when I used Office 2003.
Thanks for any advice/suggestions/references/jabs.
![[wink] [wink] [wink]](/data/assets/smilies/wink.gif)
--
"If to err is human, then I must be some kind of human!" -Me