Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
jim28
 
Posts: n/a
Default Excel File getting bigger

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel File getting bigger

Have you tried to reset the last used cell?

Debra Dalgleish shows techniques to reset that last used cell:
http://contextures.com/xlfaqApp.html#Unused

Any chance you've added shapes/pictures/controls to the worksheet?

jim28 wrote:

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
jim28
 
Posts: n/a
Default Excel File getting bigger

Yes, I have try it, however, file size remain the same.

I don't think there is any shapes/picture/control. However, I don't know why
there are still some stuffs hidden that I did not know. Also, Excel did not
provide some convenient way to delete those stuffs.

Thank you Dave, if you have more ideas to test it and find them, let me
know. Thanks.

"Dave Peterson" wrote:

Have you tried to reset the last used cell?

Debra Dalgleish shows techniques to reset that last used cell:
http://contextures.com/xlfaqApp.html#Unused

Any chance you've added shapes/pictures/controls to the worksheet?

jim28 wrote:

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel File getting bigger

You could try:

Edit|goto|special|check objects
if any are found, hit the delete key on the keyboard.

jim28 wrote:

Yes, I have try it, however, file size remain the same.

I don't think there is any shapes/picture/control. However, I don't know why
there are still some stuffs hidden that I did not know. Also, Excel did not
provide some convenient way to delete those stuffs.

Thank you Dave, if you have more ideas to test it and find them, let me
know. Thanks.

"Dave Peterson" wrote:

Have you tried to reset the last used cell?

Debra Dalgleish shows techniques to reset that last used cell:
http://contextures.com/xlfaqApp.html#Unused

Any chance you've added shapes/pictures/controls to the worksheet?

jim28 wrote:

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
jim28
 
Posts: n/a
Default Excel File getting bigger

I try it, however, no object inside.

"Dave Peterson" wrote:

You could try:

Edit|goto|special|check objects
if any are found, hit the delete key on the keyboard.

jim28 wrote:

Yes, I have try it, however, file size remain the same.

I don't think there is any shapes/picture/control. However, I don't know why
there are still some stuffs hidden that I did not know. Also, Excel did not
provide some convenient way to delete those stuffs.

Thank you Dave, if you have more ideas to test it and find them, let me
know. Thanks.

"Dave Peterson" wrote:

Have you tried to reset the last used cell?

Debra Dalgleish shows techniques to reset that last used cell:
http://contextures.com/xlfaqApp.html#Unused

Any chance you've added shapes/pictures/controls to the worksheet?

jim28 wrote:

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel File getting bigger

Any chance that they're hidden shapes?

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

For Each wks In ActiveWorkbook.Worksheets
MsgBox wks.Name & " has: " & wks.Shapes.Count & " shapes."
For Each shp In wks.Shapes
'shp.Delete
MsgBox shp.Name
Next shp
Next wks
End Sub


Do you have lots of comments?

Any chance you've added a background: Format|sheet|background

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

jim28 wrote:

I try it, however, no object inside.

"Dave Peterson" wrote:

You could try:

Edit|goto|special|check objects
if any are found, hit the delete key on the keyboard.

jim28 wrote:

Yes, I have try it, however, file size remain the same.

I don't think there is any shapes/picture/control. However, I don't know why
there are still some stuffs hidden that I did not know. Also, Excel did not
provide some convenient way to delete those stuffs.

Thank you Dave, if you have more ideas to test it and find them, let me
know. Thanks.

"Dave Peterson" wrote:

Have you tried to reset the last used cell?

Debra Dalgleish shows techniques to reset that last used cell:
http://contextures.com/xlfaqApp.html#Unused

Any chance you've added shapes/pictures/controls to the worksheet?

jim28 wrote:

Hi,

I found that Excel file getting bigger. So I try to test it by delete and
remain only one worksheet and no formula or number inside. The file size
still have 170K. Do you have any ideas what is still inside the excel file
but they are hidden? How can I remove those items?

Please note that I have already delete all the names and Macro inside the
file, but still have no cue what is remain

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
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
Stop excel from dropping the 0 in the beginning of a number? Rosewood Setting up and Configuration of Excel 12 April 4th 23 03:12 PM
Insert & link a graphic file in Excel 2003 -- updatable pictures! ODI Excel Discussion (Misc queries) 7 November 14th 05 03:36 PM
Reflecting info between an excel file and a word one or two excel file. Starriol Links and Linking in Excel 0 November 3rd 05 02:49 PM
Very slow in opening Excel 97 file in Excel 2003 S M Setting up and Configuration of Excel 0 October 22nd 05 08:32 PM
Locating a file in excel with a partial file name. Audra Excel Discussion (Misc queries) 2 February 19th 05 09:52 PM


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