Need "easy" macro

  • Thread starter Thread starter JoJo
  • Start date Start date
J

JoJo

Hi there. New to group, also fairly new to writing macros.

I have a spreadsheet that will be shared with others - it's called Blank Pet
PkOp.xls. Each person will be able to import data into the file, which then
populates various sheets in the spreadsheet.

Once they have imported their data, I need a way to force a "file save as" -
I used "file get save as", which displays the save as box, but when you go
to save the file it doesn't. I don't want them to be able to save over the
original file, as they will need to use it again in the future. So is there
a way to gray out file save therefore forcing them to save as?

Thanks

JoJo
http://home.comcast.net/~zookeepr/fosters.html
 
Hi JoJo

Some VBA code to force a Save As would be relatively easy. However, why
not create a Template from you Workbook that they open each time? This
way, wehn they save, they will automatically be saving as a .xls and not
the .xlt



***** Posted via: http://www.ozgrid.com
Excel Templates, Training & Add-ins.
Free Excel Forum http://www.ozgrid.com/forum *****
 
Not familiar with saving as a template. Let's make sure I have this
straight, if I save as a template, even if they do file save, it will save
as xls extension and not overwright the original correct?

There is one slight problem I see with this, they may need to use the
original multiple times, but save each as a different file name - the report
is to analyze sales in a certain market, the managers are responsible for
more than one market/account, therefore it would be best of they could do a
save as, especially if they are looking at more than one market/account at a
time.

Thanks!

JoJo
http://home.comcast.net/~zookeepr/fosters.html
 
Hi JoJo

Yes, when you 'Save' a Template, Excel automatically throws up the "Save
As" dialog prompting for a name (*.xls) and location.

Once the template is created and saved, you can access it easily via
File>New-Templates from any Workbook.

To create one, simply set up a Workbook as needed and go to File>Save As
and choose Template from the 'Save as type" box. Excel will
automatically default to the needed loaction.

***** Posted via: http://www.ozgrid.com
Excel Templates, Training & Add-ins.
Free Excel Forum http://www.ozgrid.com/forum *****
 
JoJo
The last problem you state is the key problem that invalidates the use
of a template. I'm referring to the repeated use of the same file and the
need to save each use under a different name.
There is an event macro named Workbook_BeforeSave that you can use. In
short, this macro is automatically triggered whenever a Save is commanded.
For your needs, you would write code in the macro that would cancel the
original Save command, then ask for a file name (or get the new name from a
cell, etc), then save the file under that new name.
Post back if you think this would work for you. Include where the new
name comes from. HTH Otto
 
Back
Top