Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I find invisible objects contributing to excel file size?

I have 2 EXCEL files with the same amount of data but have different sizes in
bytes.

One file size is 50KB the other, 1.5MB. What could be contributing to this
difference in size, and how do I find out the hidden objects that contribute
to this size of the file with 1.5MB?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default How do I find invisible objects contributing to excel file size?

hi
not sure but i think that one file may have lost it used range reference.
see this site to reset the used range.
http://www.contextures.com/xlfaqApp.html#Unused

regards
FSt1

"Francis O" wrote:

I have 2 EXCEL files with the same amount of data but have different sizes in
bytes.

One file size is 50KB the other, 1.5MB. What could be contributing to this
difference in size, and how do I find out the hidden objects that contribute
to this size of the file with 1.5MB?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,344
Default How do I find invisible objects contributing to excel file size?

Hi,

If the objects are really hidden - choose Tools, Options, View tab, Ojects,
Show All.

On each sheet you can try this: press F5, choose Special, pick Objects and
click OK. If anything is selected press Tab to move to the next object.

Of course the most likely culprit is a bitmap image, which the above
technique will allow you to find.


--
Thanks,
Shane Devenshire


"Francis O" wrote:

I have 2 EXCEL files with the same amount of data but have different sizes in
bytes.

One file size is 50KB the other, 1.5MB. What could be contributing to this
difference in size, and how do I find out the hidden objects that contribute
to this size of the file with 1.5MB?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default How do I find invisible objects contributing to excel file size?

You could run a macro that looks for hidden shapes:

Option Explicit
Sub testme()
Dim wks As Worksheet
Dim Shp As Shape

On Error Resume Next
For Each wks In ActiveWorkbook.Worksheets
For Each Shp In wks.Shapes
If Shp.Visible = msoFalse Then
MsgBox "Found one:" & vbLf & Shp.Name & vbLf & wks.Name
Shp.Visible = msoTrue
End If
Next Shp
Next wks
On Error GoTo 0
End Sub




Francis O wrote:

I have 2 EXCEL files with the same amount of data but have different sizes in
bytes.

One file size is 50KB the other, 1.5MB. What could be contributing to this
difference in size, and how do I find out the hidden objects that contribute
to this size of the file with 1.5MB?


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I find invisible objects contributing to excel file siz

I'm having a very similar problem to the original poster. I am working with
Excel work books that have a number of embedded files in them. As such, we
are attempting to re-use the work books and cleaning out the data where
necessary. For example, I have a 100mb work book that contains all the
attachments which are embedded as objects. If I go into each Excel work
sheet and highlight the object and press delete, or cut, or Alt-E-D shortcut,
etc, it removes the link to the object. However, this has no impact on the
file size. Even though I have removed each and every object (and confirmed
with using F5 - Special - Objects) is gone, the file size remains 100mb.

As such, it is my understanding that Excel still has the file embedded,
though cannot be selected/deleted/removed/etc, and just the link to the
actual object. I further confirmed this by just copying/pasting the
necessary information into another Excel work book and the file size was very
small as it was limited to text.

Is there any way to delete/remove embedded objects completely so that file
sizes come down? There is absolutely no reason why an Excel file with just
text should be 100mb other than that it is somehow retaining the embedded
files which the user has removed. Please help!
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
email excel file w/ inserted objects TLS229 Excel Discussion (Misc queries) 4 December 8th 07 07:10 PM
Excel: Find/Replace for Data Validation text or Worksheet Objects [email protected] Excel Discussion (Misc queries) 3 May 22nd 06 07:16 PM
File Invisible on opening helvetik Excel Discussion (Misc queries) 2 April 12th 06 03:14 PM
Unable to open excel file and when view the file size show as 1 KB Kamal Siva Excel Discussion (Misc queries) 1 March 7th 06 03:23 AM
Ability for Excel to find and replace graphic objects (like Word) Marjan S Excel Worksheet Functions 4 August 26th 05 03:44 AM


All times are GMT +1. The time now is 04:40 AM.

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

About Us

"It's about Microsoft Excel"