Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default Forensic Spreadsheet Review

I am involved with the forensic audit of a spreadsheet. I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what was
deleted.

Are there any other tools I can use via VB or Excel that
help me gleen more information about what was deleted and
even better, when it was deleted?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default Forensic Spreadsheet Review

Furthermore, I am seeing remnence of Crystal Ball activity
within the named ranges. Is there any other type of
dignostic I can do to extract further info on previous
Crystal Ball activity in the model?


-----Original Message-----
I am involved with the forensic audit of a spreadsheet.

I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges

in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what was
deleted.

Are there any other tools I can use via VB or Excel that
help me gleen more information about what was deleted and
even better, when it was deleted?

Thanks
.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Forensic Spreadsheet Review

To the best of my knowledge, spreadsheets don't store version information.
If you want to learn the Microsoft Compound Document format and the Binary
Interchange File Format (BIFF), then you might be able to discover that
there is some history there - I don't know because I have never tried it.
There could be wealths of knowledge there or nothing - again, I don't know,
but there is no interface provided in Excel to access past versions of the
document (I believe Word has this). The only other history mechanism that I
am aware of is if a file is shared.

Most people that I am aware of store a copy of the file and compare the new
one to the old one for this type of analysis.

--
Regards,
Tom Ogilvy



"ExcelMonkey" wrote in message
...
Furthermore, I am seeing remnence of Crystal Ball activity
within the named ranges. Is there any other type of
dignostic I can do to extract further info on previous
Crystal Ball activity in the model?


-----Original Message-----
I am involved with the forensic audit of a spreadsheet.

I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges

in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what was
deleted.

Are there any other tools I can use via VB or Excel that
help me gleen more information about what was deleted and
even better, when it was deleted?

Thanks
.



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Forensic Spreadsheet Review

All I have is one version of the file. I have been doing
some reading on Hex Editors but not sure if I have the
time to get up to speed on this. This is not an issue
regarding passwords. The file opens fine and I can see
everything. But the file has many VBA modules (40) that
are now empty (deleted) and plethora of named ranges with
errors. I am trying to ascertain if I have the original
version.


-----Original Message-----
To the best of my knowledge, spreadsheets don't store

version information.
If you want to learn the Microsoft Compound Document

format and the Binary
Interchange File Format (BIFF), then you might be able to

discover that
there is some history there - I don't know because I have

never tried it.
There could be wealths of knowledge there or nothing -

again, I don't know,
but there is no interface provided in Excel to access

past versions of the
document (I believe Word has this). The only other

history mechanism that I
am aware of is if a file is shared.

Most people that I am aware of store a copy of the file

and compare the new
one to the old one for this type of analysis.

--
Regards,
Tom Ogilvy



"ExcelMonkey" wrote

in message
...
Furthermore, I am seeing remnence of Crystal Ball

activity
within the named ranges. Is there any other type of
dignostic I can do to extract further info on previous
Crystal Ball activity in the model?


-----Original Message-----
I am involved with the forensic audit of a spreadsheet.

I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the

file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges

in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what

was
deleted.

Are there any other tools I can use via VB or Excel

that
help me gleen more information about what was deleted

and
even better, when it was deleted?

Thanks
.



.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Forensic Spreadsheet Review

Hex editors may be useful if you know what you are looking for and where to
look. In the discovery phase, you would be searching a wheat field with a
magnifying glass.

--
Regards,
Tom Ogilvy


"ExcelMoney" wrote in message
...
All I have is one version of the file. I have been doing
some reading on Hex Editors but not sure if I have the
time to get up to speed on this. This is not an issue
regarding passwords. The file opens fine and I can see
everything. But the file has many VBA modules (40) that
are now empty (deleted) and plethora of named ranges with
errors. I am trying to ascertain if I have the original
version.


-----Original Message-----
To the best of my knowledge, spreadsheets don't store

version information.
If you want to learn the Microsoft Compound Document

format and the Binary
Interchange File Format (BIFF), then you might be able to

discover that
there is some history there - I don't know because I have

never tried it.
There could be wealths of knowledge there or nothing -

again, I don't know,
but there is no interface provided in Excel to access

past versions of the
document (I believe Word has this). The only other

history mechanism that I
am aware of is if a file is shared.

Most people that I am aware of store a copy of the file

and compare the new
one to the old one for this type of analysis.

--
Regards,
Tom Ogilvy



"ExcelMonkey" wrote

in message
...
Furthermore, I am seeing remnence of Crystal Ball

activity
within the named ranges. Is there any other type of
dignostic I can do to extract further info on previous
Crystal Ball activity in the model?


-----Original Message-----
I am involved with the forensic audit of a spreadsheet.
I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the

file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges
in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what

was
deleted.

Are there any other tools I can use via VB or Excel

that
help me gleen more information about what was deleted

and
even better, when it was deleted?

Thanks
.



.





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Forensic Spreadsheet Review

I don't think this will help you as I would bet the information is gone.
AFAIK, Excel saves with the current state, nothing more.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"ExcelMoney" wrote in message
...
All I have is one version of the file. I have been doing
some reading on Hex Editors but not sure if I have the
time to get up to speed on this. This is not an issue
regarding passwords. The file opens fine and I can see
everything. But the file has many VBA modules (40) that
are now empty (deleted) and plethora of named ranges with
errors. I am trying to ascertain if I have the original
version.


-----Original Message-----
To the best of my knowledge, spreadsheets don't store

version information.
If you want to learn the Microsoft Compound Document

format and the Binary
Interchange File Format (BIFF), then you might be able to

discover that
there is some history there - I don't know because I have

never tried it.
There could be wealths of knowledge there or nothing -

again, I don't know,
but there is no interface provided in Excel to access

past versions of the
document (I believe Word has this). The only other

history mechanism that I
am aware of is if a file is shared.

Most people that I am aware of store a copy of the file

and compare the new
one to the old one for this type of analysis.

--
Regards,
Tom Ogilvy



"ExcelMonkey" wrote

in message
...
Furthermore, I am seeing remnence of Crystal Ball

activity
within the named ranges. Is there any other type of
dignostic I can do to extract further info on previous
Crystal Ball activity in the model?


-----Original Message-----
I am involved with the forensic audit of a spreadsheet.
I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the

file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges
in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what

was
deleted.

Are there any other tools I can use via VB or Excel

that
help me gleen more information about what was deleted

and
even better, when it was deleted?

Thanks
.



.



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 339
Default Forensic Spreadsheet Review


"ExcelMonkey" wrote in message
...
I am involved with the forensic audit of a spreadsheet. I
am looking to see what I can find that will tell me
whether or not sheets/ranges were deleted from the file.
I just did a Print List of all the Named Ranges in the
model. As expected, their are hundreds of named ranges in
the file that have #REF! errors in them. This tells me
data was deleted. However I do not know exactly what was
deleted.

Are there any other tools I can use via VB or Excel that
help me gleen more information about what was deleted and
even better, when it was deleted?

Thanks


I think the only way to achieve what you want is to get some kind of BIFF
viewer, a utility that examines everything stored in the xls file. A quick
search revealed the eistence of the tools below. You should also know that
Excel may create a backup file.

http://www.eurodownload.com/download...el-viewer.html
http://www.scalabium.com/xls/

/Fredrik


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
Spreadsheet setup for comparison review......is this easy? Mary MG[_2_] Excel Discussion (Misc queries) 1 March 24th 08 05:11 PM
Review this if function please..... jcheko Excel Worksheet Functions 6 February 21st 08 12:37 AM
I cannot review my named sheet tabs on my spreadsheet ctaylor Excel Worksheet Functions 8 December 28th 06 10:31 PM
Months of review Pasty Excel Worksheet Functions 7 November 13th 06 05:17 PM
i have a fax sent to me for review but i cant open its saying i n loans New Users to Excel 3 August 25th 05 03:10 AM


All times are GMT +1. The time now is 02:54 AM.

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"