Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
jb jb is offline
external usenet poster
 
Posts: 15
Default size of file

does anyone know what makes the excel file size balloon
and what I can do to shrink it back down?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default size of file

Excel only maintains information on cells it thinks are in use. This can
include cells that contain formatting, change in row height, etc. They
don't necessarily need to contain information. If you use the vertical
scoll bar and when you get to the end of you data, it isn't on the bottom
end of the bar, the Excel is seeing a lot more of your sheet as being in use
than you would think. This can cause excel to store much more additional
information and could be the cause of your problem. To reset the usedrange,
select entire rows from below the last filled row to the bottom and do
Edit=Delete. An easy way to do this is to go in the name bar in the upper
left of the formula bar and enter

300:65536 <cr
Then do edit=Delete

Do it on each page with the appropriate ranges. Then save your workbook.

--
Regards,
Tom Ogilvy


"jb" wrote in message
...
does anyone know what makes the excel file size balloon
and what I can do to shrink it back down?



  #3   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default size of file

Thanks Tom. the odd thing is, I deleted thousands of rows,
and it only reduced the size by about 5kb! There's a temp
file that shows up as it saves, at about 1000kb, but the
actual file still saves at 2000kb...?

-----Original Message-----
Excel only maintains information on cells it thinks are

in use. This can
include cells that contain formatting, change in row

height, etc. They
don't necessarily need to contain information. If you

use the vertical
scoll bar and when you get to the end of you data, it

isn't on the bottom
end of the bar, the Excel is seeing a lot more of your

sheet as being in use
than you would think. This can cause excel to store much

more additional
information and could be the cause of your problem. To

reset the usedrange,
select entire rows from below the last filled row to the

bottom and do
Edit=Delete. An easy way to do this is to go in the

name bar in the upper
left of the formula bar and enter

300:65536 <cr
Then do edit=Delete

Do it on each page with the appropriate ranges. Then

save your workbook.

--
Regards,
Tom Ogilvy


"jb" wrote in

message
...
does anyone know what makes the excel file size balloon
and what I can do to shrink it back down?



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default size of file

Charles Williams has a WebPage that offers a bunch of suggestions on
reducing file size.

http://www.decisionmodels.com/optspeedd.htm#Size

One issue that I found recently to cause significant bloating has to
do with running a lot of Web Queries, that is, getting External Data.
Excel creates hidden names.

I either delete these sheets periodically (through code). Or delete
these names........

Dim nm as Name

For Each nm In ActiveWorkbook.Names
If nm.Name Like "*ExternalData*" Then nm.Delete
Next nm

HTH
Paul
--------------------------------------------------------------------------------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------------------------------------------

does anyone know what makes the excel file size balloon
and what I can do to shrink it back down?


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default size of file

Do you have VBA in your workbook??? if so, delete it,
delete the modules that contained the code, create new
one and paste your code in it... do not ask me why but
you can reduce the size of your workbook up to 1/2 of
it's original size...

-----Original Message-----
does anyone know what makes the excel file size balloon
and what I can do to shrink it back down?
.



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
File Size With Macros Has Increased From Its Origina Size Fred Excel Discussion (Misc queries) 1 April 26th 08 12:24 AM
Unusual File Size in Excel file Teck Excel Discussion (Misc queries) 2 January 12th 07 01:52 AM
how to set sheet size to reduce file size LJ Excel Discussion (Misc queries) 1 November 26th 06 02:35 AM
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
WHY IS MY FILE SO BIG? How can I reduce the size of a file? I h. Julieeeee Excel Discussion (Misc queries) 5 December 17th 04 11:20 PM


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