Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have created a list of data in an excel spreadsheet that I would
like to distribute widely. Is there a way to stop someone from forwarding or copying this spreadsheet once they get it? It will be distributed through email. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could encrypt it.
But that doesn't take care of the case where someone opens, saves, and sends. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If someone can open your workbook, they can copy and distribute it.
In article .com, wrote: I have created a list of data in an excel spreadsheet that I would like to distribute widely. Is there a way to stop someone from forwarding or copying this spreadsheet once they get it? It will be distributed through email. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You're wondering if we have any ideas or suggestions.
You add a VBA function that makes it so that if the workbook is opened off of your company's network it send you an email consisting of meta data about the user's computer. You'd probably be able to get the person's name. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In article .com,
" wrote: You add a VBA function that makes it so that if the workbook is opened off of your company's network it send you an email consisting of meta data about the user's computer. You'd probably be able to get the person's name. Unless they have security set to high, in which case the VBA doesn't run. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you are on a company network with a shared drive, place your file there
and then do the following: 1. Create an Intro sheet in your workbook 2. Set all other sheets to VeryHidden 3. Create a "Path" bomb. This verifies the path that the workbook was launched from. If the value does not match, it closes the workbook. 4. Create a workbook open sub that verifies the path, and then unhides all sheets. 5. Create a workbook before save sub that sets all sheets except the Intro to VeryHidden. 6. Password protect your code. What happens then is when the workbook is opened, the path is verified and if it is OK, all sheets are made visible. If not, the path bomb closes the workbook. If Macros are disabled, all they see if the Intro sheet. If someone tries to save the sheet to another location, all sheets will be veryhidden before the save. Then if someone tries to open the workbook from email or other location the path bomb kicks in. Once again if macros are disabled all they will see is the intro sheet because the before save sub reset all sheets to veryhidden. -- Thanks, R Woltner " wrote: I have created a list of data in an excel spreadsheet that I would like to distribute widely. Is there a way to stop someone from forwarding or copying this spreadsheet once they get it? It will be distributed through email. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to export data from excel spreadsheet to outlook distribution | Excel Discussion (Misc queries) | |||
how to limit the Weight of any weight distribution | Excel Discussion (Misc queries) | |||
how to limit the Weight of any weight distribution | Excel Worksheet Functions | |||
Spreadsheet Limit | Excel Discussion (Misc queries) | |||
the limit on how many rows can be in one spreadsheet | Excel Worksheet Functions |