LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Tracking Instantaneously When the Shared Excel Workbook Is Ope

Thanks for the info. It's something I never would have expected.
--
Gary''s Student - gsnu200785


"Jim Thomlinson" wrote:

Check out this link...

http://j-walk.com/ss/excel/odd/odd26.htm
--
HTH...

Jim Thomlinson


"Gary''s Student" wrote:

Hi Jim:

I found your comments extremely interesting:

How do you determine who openned a workbook if they never save it ??

Suppose we record information when the book is openned and immediately save.
A pre-emptive strike that does not rely on the user saving at all:

Private Sub Workbook_Open()
Application.ScreenUpdating = False
Sheets("Audit").Activate
n = Cells(Rows.Count, 1).End(xlUp).Row + 1
Cells(n, 1) = Now
Cells(n, 2) = Environ("username")
ThisWorkbook.Save
Sheets("Sheet1").Activate
Application.ScreenUpdating = True
End Sub

--
Gary''s Student - gsnu200784


"Jim Thomlinson" wrote:

So you wnat to know who was the last person to open a file and when they did
it even though no changes were made to the file and the file would not have
been saved. Assuming that to be the case you can get the who but not the
when.

Who opened the file is not that easy to get. The problem is that if you open
the file then the last person to open it is you... If however you open the
file using a text editor (which you can download off of the internet) you can
open the file in it's binary form. What you will see will be a whole huge
pile of meaningless characters with odd bits of legible text thrown in. One
of those bits of text will be the last person who opened the file.
--
HTH...

Jim Thomlinson


"DCE" wrote:

In the Excel menu, there are sharing and tracking selections that could be
optionally set on to collect or log and keep within period of time, either on
the screen or a separate sheet of who (id/names of people given access to the
shared workbook, when (date and time changes were made , and what cells
(ranges and changes made) changed in the worksheet within a period of time.

Question: Is there a way of tracking the who and when the file was opened
even if there were no changes made on the worksheet?



 
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
sort excel when the workbook is opened Michael Excel Discussion (Misc queries) 7 February 1st 07 04:33 PM
Shared spreadsheet changes color when opened ny another user. Why Nick DeSimone Excel Worksheet Functions 0 May 26th 06 05:13 PM
Shared spreadsheet changes color when opened ny another user. Why Nick DeSimone Excel Worksheet Functions 0 May 26th 06 05:12 PM
Is there away to keep Excel from opening a copy of an already opened workbook and the pages not be at 100% but Marc New Users to Excel 1 March 13th 06 01:51 PM
Can a workbook be opened w/out Excel on the host machine?? MIchelleDuquette Excel Discussion (Misc queries) 2 May 5th 05 08:18 PM


All times are GMT +1. The time now is 12:35 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"