I am currently saving a test file in this format
"TEST - Created August 31 06, 10 26-47 A.XLS"
What I would Like to add is the persons name taking the test which is displayed in worksheet "test" cell Z3.
So that the saved file would look something like this.
"John doe - TEST - Created August 31 06, 10 26-47 A.XLS"
Here it the code that I am currently using.
I would appreciate any help, I have tried several different ways but no luck.
Thanks in advance for any help.
ActiveWorkbook.SaveCopyAs "C:\forms\TEST\TEST - Created " + Format(ActiveWorkbook.Worksheets("TEST").Cells(3, 1), " mmmm D yy, h mm-ss A/P") + ".XLS"
Bookmarks