personal.xls

B

Bob Phillips

It will be personal.xlsx or personal.xlsm, and it should still be in the
XLStart directory.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
G

Guest

bob, I can't find the XLStart folder...

D:\Users\helmut\AppData\

now I have the choice of Loacal / LocalLow / and Roaming

In none of these is XLStart

Can you tell me the path?
 
G

Guest

go into the VBE and run this macro:

Sub ShowPath()
Dim bk as workbook
for each bk in workbooks
if lcase(left(bk.name,8)) = "personal" then
msgbox bk.Path & vbNewline & bk.name
end if
Next
End sub
 
G

Guest

Maybe you haven't created a "personal" workbook yet. Try recording a macro
and indicate the personal workbook as the location to store the macro. You
can just select a cell or two and then turn off the recorder. Then try
running my macro. It worked in xl2003 and I would expect it to work in Excel
2007 as well, but don't have it available to test.

You could make it more verbose.

Sub ShowPath()
Dim bk as workbook
for each bk in workbooks

msgbox bk.Path & vbNewline & bk.name

Next
End sub

--
Regards,
Tom Ogilvy
 
G

Guest

Tom
Thanks. The XLStart folder does NOT exist until you actually create a
Personal macro. This is the difference in 2007 vs 2003 where it is created as
part of the setup of XL.
Thanks
Helmut
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top