Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
does anyone know what makes the excel file size balloon
and what I can do to shrink it back down? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
File Size With Macros Has Increased From Its Origina Size | Excel Discussion (Misc queries) | |||
Unusual File Size in Excel file | Excel Discussion (Misc queries) | |||
how to set sheet size to reduce file size | Excel Discussion (Misc queries) | |||
Unable to open excel file and when view the file size show as 1 KB | Excel Discussion (Misc queries) | |||
WHY IS MY FILE SO BIG? How can I reduce the size of a file? I h. | Excel Discussion (Misc queries) |