Thanks, Arne
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguil...@austin.rr.com
"Arne" <Ar...@discussions.microsoft.com> wrote in message
news:2538841B-C9C8-418C...@microsoft.com...
"Don Guillett" wrote:
> .
>
Thye can be useful if you set things up a in a particular way on an ongoing
basis.
Personally I never use them but I am aware of companies that I have worked
for in the past using them to make sure that all of their employees use EXCEL
in a standard way (as set up in the EXCEL template). This ensures consistency
across the company and can present a more favourable image (of that company).
If my comments have helped please hit Yes.
Thanks.
I am not aware that a template can do anything for you that an, "ordinary"
Workbook cannot: to all intents and purposes they are the same thing.
The template can be re-used on an ongoing basis. It is the template (or
basis) for fresh Workbooks.
Please hit Yes if my comments have helped.
Thanks.
" What are the specific advantages of xxx in terms of" is not often an excel
problem to be solved, but a pretty common kind of question a teacher asks
his students, and which the student passes unmodified to us. So I guess Don
took you for a student. Maybe you are <g>.
A template can be added to the templates gallery, that's the only difference
I can think of. I never use templates, writeonly workbooks works better for
my porposes.
Best wishes Harald
Thanks for the answer.
Regards,
Arne
"Harald Staff" wrote:
> .
>
Just for the record, I don't at all mind helping with students'
homework -opinions differ a lot on this. I assist people that are paid more
than me to know these things but doesn't. So of course students get at least
the same service as long as they may learn something from it.
Happy new year!
Best wishes Harald
"Arne" <Ar...@discussions.microsoft.com> wrote in message
news:2C5D0E6C-455B-40C1...@microsoft.com...
I know lots of people that simply take the last copy of a workbook and open
it and save it with a new name and make changes as required. Quite often
they run into problems caused by not completely cleaning up/replacing old
information from a previous use. Or they'll forget to rename it and
overwrite the older file which totally destroys that one which can be a bit
of a disaster if they really needed that other file! Using a template FORCES
a renaming of the file.
Another course to consider is to create a standard Excel file to be used
like a template. But instead of just opening it and trying to remember to
use SAVE AS to give it a new name and thus prevent possibly
destroying/corrupting the source file, if you will use
File --> New and then choose "From Existing File" and identify your
pseudo-template file, you will be opening a clean copy of a file you can
easily edit, AND you'll be forced to rename the new copy of it, just as if it
were a standard .xlt file.
I use Templates in some applications I have written for clients.
The usual use for me is Invoice creation, where a layout that suits that
client's needs is created as a Template file with the correct dropdowns for
selecting Customer name, product, etc., along with formulae to look up
product description, price etc. and extend theses to total values per line
and for the Invoice Total.
Using a Template, the client creates the invoice and has to store it as a
new name, thereby preserving the original "blank" template for future use.
I hope this explains it for you.
--
Regards
Roger Govier
"Arne" <Ar...@discussions.microsoft.com> wrote in message
news:04BFA644-DCE5-459B...@microsoft.com...
> __________ Information from ESET Smart Security, version of virus
> signature database 4734 (20100101) __________
>
> The message was checked by ESET Smart Security.
>
> http://www.eset.com
>
>
>
__________ Information from ESET Smart Security, version of virus signature database 4734 (20100101) __________
The message was checked by ESET Smart Security.
oops!
To prevent code running when you re-open a saved workbook created from a
Template, check for a path.
A saved workbook will have a path.
An unsaved workbook will not.
Check for the path and Exit Sub if path is found.
If not, carry on with workbook_open code.
Private Sub Workbook_Open()
If ActiveWorkbook.Path <> "" Then Exit Sub
'your code here
End Sub
Gord Dibben MS Excel MVP
On Thu, 31 Dec 2009 07:45:01 -0800, Arne <Ar...@discussions.microsoft.com>
wrote: