View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
joeu2004 joeu2004 is offline
external usenet poster
 
Posts: 2,059
Default Why does it take so long to open?

What happens if you disable the virus scanning software, if you have any?

Also, it appears to take longer to read from disk than it takes to write to
disk. In fact, it is just the opposite. But most O/Ses buffer writes; that
is, the writes physically complete some time after the system says they did,
unless you set certain high-reliability options. Of course, for reading,
Excel must wait until all data is transferred to memory.

Finally, for normal recalculation, Excel will only recalculate what has
changed (including volatile functions) and their dependencies. In contrast,
when you open a file, Excel might have to visit every cell in order to build
its dependency graph. That's a WAG. The dependency graph might be saved in
the file. I would hope so; but perhaps there is a good design reason why it
shouldn't be.

Of course, there could be other factors involved. For example, do you have
any event macros that might be executed when a file is opened?


----- original message -----

"Henry" wrote in message
...
I have this huge complicated template, 94 Mbs its not a format issue, more
a
complex long string of nested IF statements. The problem is that opening
the
file takes about 15 mins.. not kidding. Saving the file takes about 5
mins.
Calc the file takes about 5 mins, even if I change all the variables.
My question is why does it take that long to open? The file is on my local
HD, so you would think it would be faster. Can someone explain?