ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Forcing a FileSaveAs (https://www.excelbanter.com/excel-programming/276956-forcing-filesaveas.html)

John Petty

Forcing a FileSaveAs
 
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)

Orlando Magalhães Filho

Forcing a FileSaveAs
 
Hi Jonh Petty,

Why don't you save your template as Excel template, XLT file?

HTH

---
Orlando Magalhães Filho

(So that you get best and rapid solution and all may benefit from the
discussion, please reply within the newsgroup, not in email)

"John Petty" escreveu na mensagem
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)




Tom Ogilvy

Forcing a FileSaveAs
 
As soon as it is opened using File=New, it is an xls, so you could
certainly do it in the workbook_Open event.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)




John Petty

Forcing a FileSaveAs
 
Thanks Tom.
-----Original Message-----
As soon as it is opened using File=New, it is an xls, so

you could
certainly do it in the workbook_Open event.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)



.


John Petty

Forcing a FileSaveAs
 
Oops. Sorry, didn't work. The file that is opened is a
template (aka XLT). But if a template is opened from
within Excel, you can overwrite it. Our users are usually
pretty good at saveas, but on occasion (when stress
overrides time), they will fill out the form and save
before sending through routing. This causes a problem for
the next user. I initially tied in some code that cleared
the contents, but that is really a bandaid and not a true
fix. What I am looking for is a way to foolproof a save
function.

-----Original Message-----
As soon as it is opened using File=New, it is an xls, so

you could
certainly do it in the workbook_Open event.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)




Tom Ogilvy

Forcing a FileSaveAs
 
Of course if you edit it as an xla, you would need to disable events or hold
down the shift key when you open it.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Thanks Tom.
-----Original Message-----
As soon as it is opened using File=New, it is an xls, so

you could
certainly do it in the workbook_Open event.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)



.




Tom Ogilvy

Forcing a FileSaveAs
 
The proper way to use an XLT is to put it in the template directory and then
you do

file=New and select this template.

It is opened as an XLS and automatically has a new name.

If you navigate to the template and open it, then there is no advantage to
making it a template - you are just opening a workbook.

In your workbook.Open you can check to see what the situation is

Private sub Workbook_Open()
if thisworkbook.Fileformat = xlTemplate then Exit sub
if thisworkbook.FileFormat = xlWorkbookNormal then
if thisworkbook.FullName < thisworkbook.Name then
' workbook has been saved before
exit sub
else
' code to force saveas
end if
End if
End sub

--
Regards,
Tom Ogilvy




John Petty wrote in message
...
Oops. Sorry, didn't work. The file that is opened is a
template (aka XLT). But if a template is opened from
within Excel, you can overwrite it. Our users are usually
pretty good at saveas, but on occasion (when stress
overrides time), they will fill out the form and save
before sending through routing. This causes a problem for
the next user. I initially tied in some code that cleared
the contents, but that is really a bandaid and not a true
fix. What I am looking for is a way to foolproof a save
function.

-----Original Message-----
As soon as it is opened using File=New, it is an xls, so

you could
certainly do it in the workbook_Open event.

--
Regards,
Tom Ogilvy

John Petty wrote in message
...
Is there a way that I can force the user to save a
template to an XLS upon opening the template (i.e. Sub
open_Workbook)







All times are GMT +1. The time now is 07:53 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com