reducing the file size

psrs0810

Well-known Member
Joined
Apr 14, 2009
Messages
1,109
I have a file that is huge for the amount of data that is in it. 1.283Megs for a file that is 33 rows by 11 columns.
each cell contains various letters, numbers, words.

What would cause this and how can I reduce the file size?

Thank you
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
First, I would'nt call 1.283 MB Huge....

But I would guess Formatting, particularly if you have formatting that extends beyond the actual used Range.

Also perhaps some Conditional formatting, or any other formulas.
 
Upvote 0
I know 1.283MB is not huge, but for 363 cells it really should be more like 50KB.
when you say formatting beyond the range of acutal cells used - when I open the file how would I know if there is formatting beyone the used range?

Do you have an easy way to clean it up?

Thanks
 
Upvote 0
Try this on a copy of your book (just in case)...

Try inserting a new sheet
And from the original sheet, copy the actual used range (11X33) and paste into new sheet
Delete original sheet.

That should at least get rid of any formatting beyond the used range.
 
Upvote 0
Also there could be a problem that there are a bunch of shapes on the page... try running:

Code:
Public Sub deleteshapes()
ActiveSheet.Shapes.SelectAll
Selection.ShapeRange.Delete
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,547
Messages
6,179,436
Members
452,915
Latest member
hannnahheileen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top