Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Protect file from being overwritten via "save as"

Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've done
is save the file to their C:\ once the file is open. Make their changes and
then "save-as" back to the network drive (thus overwriting) the original file.

How can I prevent them from saving over my file with their "new" file?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Protect file from being overwritten via "save as"


Set the file as read-only. Or you can get the System Administrator to make
that network folder read-only, since savy users will simply set the file to
read-write and then save over it (if any of your users are that savy).

"CCrew2000" wrote in message
...
Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've
done
is save the file to their C:\ once the file is open. Make their changes
and
then "save-as" back to the network drive (thus overwriting) the original
file.

How can I prevent them from saving over my file with their "new" file?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Protect file from being overwritten via "save as"

Problem is that I want them to be able to open the file, make changes and
save it at that time. If they "save as" the file to another location, then
there are now two versions of the file. This could cause issues down the
road.

I'd like to be able to protect the file to prevent it from being saved over.
Have it ask for a password or something along those lines. I already have a
password in order to open the file.

"Edmund" wrote:


Set the file as read-only. Or you can get the System Administrator to make
that network folder read-only, since savy users will simply set the file to
read-write and then save over it (if any of your users are that savy).

"CCrew2000" wrote in message
...
Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've
done
is save the file to their C:\ once the file is open. Make their changes
and
then "save-as" back to the network drive (thus overwriting) the original
file.

How can I prevent them from saving over my file with their "new" file?




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Protect file from being overwritten via "save as"

What sort of data is in the file? I ask becuase it sounds like this may be
better suited to a database (eg. MS Access). If multiple users need to
access/update the data then perhaps it is not a good idea to use a system
that is not designed for such. A database is designed to do just that. Can
you put it into a database?

Oh, I just though of something. Did you know that you can link the Excel
file as a table in an Access database. I think each sheet can be linked as
a table. Then you could use the Form Wizzard to create forms to access the
linked tables (that are really the excel pages). That way if you really
needed the data in Excel, say, for some macro or charting, then it can stay
in Excel; while the access is controlled by Access.

Edmund


"CCrew2000" wrote in message
...
Problem is that I want them to be able to open the file, make changes and
save it at that time. If they "save as" the file to another location,
then
there are now two versions of the file. This could cause issues down the
road.

I'd like to be able to protect the file to prevent it from being saved
over.
Have it ask for a password or something along those lines. I already have
a
password in order to open the file.

"Edmund" wrote:


Set the file as read-only. Or you can get the System Administrator to
make
that network folder read-only, since savy users will simply set the file
to
read-write and then save over it (if any of your users are that savy).

"CCrew2000" wrote in message
...
Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the
users
complain about the time it takes to open the excel file. What they've
done
is save the file to their C:\ once the file is open. Make their
changes
and
then "save-as" back to the network drive (thus overwriting) the
original
file.

How can I prevent them from saving over my file with their "new" file?






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Protect file from being overwritten via "save as"

The file is designed for another (1) user to update a bunch of data in the
file. Once they are done, they save it and then I use it for other
functions. We've thought about using Access, but its too late in the game to
use at this point in time.

I'm looking to see if there is a way to prevent them from oversaving a file.

"Edmund" wrote:

What sort of data is in the file? I ask becuase it sounds like this may be
better suited to a database (eg. MS Access). If multiple users need to
access/update the data then perhaps it is not a good idea to use a system
that is not designed for such. A database is designed to do just that. Can
you put it into a database?

Oh, I just though of something. Did you know that you can link the Excel
file as a table in an Access database. I think each sheet can be linked as
a table. Then you could use the Form Wizzard to create forms to access the
linked tables (that are really the excel pages). That way if you really
needed the data in Excel, say, for some macro or charting, then it can stay
in Excel; while the access is controlled by Access.

Edmund


"CCrew2000" wrote in message
...
Problem is that I want them to be able to open the file, make changes and
save it at that time. If they "save as" the file to another location,
then
there are now two versions of the file. This could cause issues down the
road.

I'd like to be able to protect the file to prevent it from being saved
over.
Have it ask for a password or something along those lines. I already have
a
password in order to open the file.

"Edmund" wrote:


Set the file as read-only. Or you can get the System Administrator to
make
that network folder read-only, since savy users will simply set the file
to
read-write and then save over it (if any of your users are that savy).

"CCrew2000" wrote in message
...
Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the
users
complain about the time it takes to open the excel file. What they've
done
is save the file to their C:\ once the file is open. Make their
changes
and
then "save-as" back to the network drive (thus overwriting) the
original
file.

How can I prevent them from saving over my file with their "new" file?








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Protect file from being overwritten via "save as"


You can link the Excel file into Access as a linked table. That way the
updates are actually saved to the Excel file. You get to control access to
the data through Access AND keep the data in an Excell file.

Edmund

"CCrew2000" wrote in message
...
The file is designed for another (1) user to update a bunch of data in the
file. Once they are done, they save it and then I use it for other
functions. We've thought about using Access, but its too late in the game
to
use at this point in time.

I'm looking to see if there is a way to prevent them from oversaving a
file.

"Edmund" wrote:

What sort of data is in the file? I ask becuase it sounds like this may
be
better suited to a database (eg. MS Access). If multiple users need to
access/update the data then perhaps it is not a good idea to use a system
that is not designed for such. A database is designed to do just that.
Can
you put it into a database?

Oh, I just though of something. Did you know that you can link the Excel
file as a table in an Access database. I think each sheet can be linked
as
a table. Then you could use the Form Wizzard to create forms to access
the
linked tables (that are really the excel pages). That way if you really
needed the data in Excel, say, for some macro or charting, then it can
stay
in Excel; while the access is controlled by Access.

Edmund


"CCrew2000" wrote in message
...
Problem is that I want them to be able to open the file, make changes
and
save it at that time. If they "save as" the file to another location,
then
there are now two versions of the file. This could cause issues down
the
road.

I'd like to be able to protect the file to prevent it from being saved
over.
Have it ask for a password or something along those lines. I already
have
a
password in order to open the file.

"Edmund" wrote:


Set the file as read-only. Or you can get the System Administrator to
make
that network folder read-only, since savy users will simply set the
file
to
read-write and then save over it (if any of your users are that savy).

"CCrew2000" wrote in message
...
Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the
users
complain about the time it takes to open the excel file. What
they've
done
is save the file to their C:\ once the file is open. Make their
changes
and
then "save-as" back to the network drive (thus overwriting) the
original
file.

How can I prevent them from saving over my file with their "new"
file?








  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Protect file from being overwritten via "save as"

There is a way to share a workbook, I found in the help, maybe this would
suit your needs:
Share a workbook
Create a workbook you want to make available for multiuser editing, and
enter any data you want to provide.
If you want to include any of the following features, add them now: merged
cells, conditional formats, data validation, charts, pictures, objects
including drawing objects, hyperlinks, scenarios, outlines, subtotals, data
tables, PivotTable reports, workbook and worksheet protection, and macros.
You can't make changes to these features after you share the workbook.

On the Tools menu, click Share Workbook, and then click the Editing tab.
Select the Allow changes by more than one user at the same time check box,
and then click OK.
When prompted, save the workbook.
On the File menu, click Save As, and then save the workbook on a network
location accessible to the intended users. Use a shared network folder, not a
Web server.



"CCrew2000" wrote:

Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've done
is save the file to their C:\ once the file is open. Make their changes and
then "save-as" back to the network drive (thus overwriting) the original file.

How can I prevent them from saving over my file with their "new" file?

  #8   Report Post  
Posted to microsoft.public.excel.programming
Isa Isa is offline
external usenet poster
 
Posts: 16
Default Protect file from being overwritten via "save as"

Have you tried simply removing "Save As" (and Send To) from the File menu
from the workbook?

"CCrew2000" wrote:

Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've done
is save the file to their C:\ once the file is open. Make their changes and
then "save-as" back to the network drive (thus overwriting) the original file.

How can I prevent them from saving over my file with their "new" file?

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Protect file from being overwritten via "save as"

Hi ISA

See
http://www.rondebruin.nl/menuid.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"ISA" wrote in message ...
Have you tried simply removing "Save As" (and Send To) from the File menu
from the workbook?

"CCrew2000" wrote:

Is there a way to prevent someone from saving over a specific file?

I've created a file on a network drive for some users. Some of the users
complain about the time it takes to open the excel file. What they've done
is save the file to their C:\ once the file is open. Make their changes and
then "save-as" back to the network drive (thus overwriting) the original file.

How can I prevent them from saving over my file with their "new" file?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Selecting "Save As" adds "Copy of" to file name- MS Excel 2007 ronhansen Excel Discussion (Misc queries) 1 November 15th 09 09:33 PM
Protect "Copy" and "Save As" changes to workbook Jason W Excel Discussion (Misc queries) 3 January 4th 09 01:13 AM
"Save" and "Save As" options greyed out - "Save as Webpage" option Bill Excel Discussion (Misc queries) 0 January 16th 07 04:47 PM
Problem- Recording macros for "file save" and "File open" tritaco Excel Programming 1 April 22nd 04 06:15 PM
how to change default file name in "save as" or "save" gerard Excel Programming 1 July 24th 03 10:58 PM


All times are GMT +1. The time now is 12:31 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"