Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Excel 2002 Workbook Opens Very Slowly

I have a very mundane Excel workbook that is used by my department to keep our calendar. It has no macros and no formulas at all. However, it takes over 2 minutes to open the workbook from every computer I've tried it on. I've checked for viruses using McAfee (updated daily) without finding anything at all.

You can download the workbook at http://jadedharem.no-ip.info/jadedha...ngCalendar.xls

Copy and pasting the cells onto a new workbook seems to fix the problem temporarily (it'll open in under 10 seconds), however later deleting of a single row will cause the problem to reappear. I've also tried using SaveAs and renaming it with no improvement.

I'm using Excel 2002 SP-1 running on Windows XP SP-1. If anyone has any ideas or suggestions on what could be causing this I would appreciate it!

--
JT Lovell

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 170
Default Excel 2002 Workbook Opens Very Slowly


"JT Lovell" wrote in message
...
I have a very mundane Excel workbook that is used by my department to keep

our calendar.
It has no macros and no formulas at all. However, it takes over 2 minutes

to open the workbook
from every computer I've tried it on. I've checked for viruses using

McAfee (updated daily) without finding anything at all.

It does however contain several thousand objects in the shapes collection
which appear to be text boxes

run the following macro to find them

Dim ms As Shape
For Each ms In ActiveSheet.Shapes
On Error Resume Next
Debug.Print ms.Name & " location :-" & ms.TopLeftCell
Next ms

After I deleted them as below the spreadsheet opened in seconds

Dim ms As Shape
For Each ms In ActiveSheet.Shapes
On Error Resume Next
ms.Delete
Next ms

Keith


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Excel 2002 Workbook Opens Very Slowly

How are these created? The user was only copy/pasting the data from the
calendar around. Will this cause new shapes to be added to the collection?
Is there a way to prevent this from happening again, or will this cleanup
script need to be run periodically?

Thanks for your help!

--
JT Lovell

"Keith Willshaw" wrote in message
...

"JT Lovell" wrote in message
...
I have a very mundane Excel workbook that is used by my department to

keep
our calendar.
It has no macros and no formulas at all. However, it takes over 2

minutes
to open the workbook
from every computer I've tried it on. I've checked for viruses using

McAfee (updated daily) without finding anything at all.

It does however contain several thousand objects in the shapes collection
which appear to be text boxes

run the following macro to find them

Dim ms As Shape
For Each ms In ActiveSheet.Shapes
On Error Resume Next
Debug.Print ms.Name & " location :-" & ms.TopLeftCell
Next ms

After I deleted them as below the spreadsheet opened in seconds

Dim ms As Shape
For Each ms In ActiveSheet.Shapes
On Error Resume Next
ms.Delete
Next ms

Keith




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 102
Default Excel 2002 Workbook Opens Very Slowly

You have objects all over the pace.
Little rectangles with no visible boarders or colour.
Goto F5 Special Objects ok then hit delete.

Save and the file size should drop to 31k.


Regards Robert
"JT Lovell" wrote in message ...
I have a very mundane Excel workbook that is used by my department to keep our calendar. It has no macros and no formulas at all. However, it takes over 2 minutes to open the workbook from every computer I've tried it on. I've checked for viruses using McAfee (updated daily) without finding anything at all.

You can download the workbook at http://jadedharem.no-ip.info/jadedha...ngCalendar.xls

Copy and pasting the cells onto a new workbook seems to fix the problem temporarily (it'll open in under 10 seconds), however later deleting of a single row will cause the problem to reappear. I've also tried using SaveAs and renaming it with no improvement.

I'm using Excel 2002 SP-1 running on Windows XP SP-1. If anyone has any ideas or suggestions on what could be causing this I would appreciate it!

--
JT Lovell


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.593 / Virus Database: 376 - Release Date: 21/02/2004
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Excel 2002 Workbook Opens Very Slowly

Great! Thanks!!

Do you know how these get created? Was it likely just a matter of accidentally creating one and then cut/pasting them without knowing it?

--
JT Lovell

"Robert McCurdy" wrote in message ...
You have objects all over the pace.
Little rectangles with no visible boarders or colour.
Goto F5 Special Objects ok then hit delete.

Save and the file size should drop to 31k.


Regards Robert
"JT Lovell" wrote in message ...
I have a very mundane Excel workbook that is used by my department to keep our calendar. It has no macros and no formulas at all. However, it takes over 2 minutes to open the workbook from every computer I've tried it on. I've checked for viruses using McAfee (updated daily) without finding anything at all.

You can download the workbook at http://jadedharem.no-ip.info/jadedha...ngCalendar.xls

Copy and pasting the cells onto a new workbook seems to fix the problem temporarily (it'll open in under 10 seconds), however later deleting of a single row will cause the problem to reappear. I've also tried using SaveAs and renaming it with no improvement.

I'm using Excel 2002 SP-1 running on Windows XP SP-1. If anyone has any ideas or suggestions on what could be causing this I would appreciate it!

--
JT Lovell


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.593 / Virus Database: 376 - Release Date: 21/02/2004


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 170
Default Excel 2002 Workbook Opens Very Slowly


"JT Lovell" wrote in message
...
How are these created? The user was only copy/pasting the data from the
calendar around.


There was probably just one to start with which got copied again and again

Will this cause new shapes to be added to the collection?
Is there a way to prevent this from happening again, or will this cleanup
script need to be run periodically?


You should be OK from now on, but you can always run the script again

Keith


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Excel 2002 Workbook Opens Very Slowly

Thanks again!

--
JT Lovell

"Keith Willshaw" wrote in message
...

"JT Lovell" wrote in message
...
How are these created? The user was only copy/pasting the data from the
calendar around.


There was probably just one to start with which got copied again and again

Will this cause new shapes to be added to the collection?
Is there a way to prevent this from happening again, or will this

cleanup
script need to be run periodically?


You should be OK from now on, but you can always run the script again

Keith




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
opens slowly boopathi subramaniam Excel Discussion (Misc queries) 1 June 2nd 10 02:14 PM
shared workbook opens slowly Mike New Users to Excel 1 December 3rd 09 06:38 AM
Excel 2002 opens without showing a workbook Jen Excel Discussion (Misc queries) 2 February 22nd 07 04:43 PM
Excel file opens slowly Marcel Excel Discussion (Misc queries) 9 January 18th 06 10:07 PM
excel 2002 opens slowly Wadey023 Excel Discussion (Misc queries) 2 February 16th 05 05:03 PM


All times are GMT +1. The time now is 02:06 PM.

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"