PC Review


Reply
Thread Tools Rate Thread

2003 and 2007

 
 
greg
Guest
Posts: n/a
 
      14th May 2009
Hello, a bit of a strange question.
I have a vba program, which reads data from one sheet and writes to another
sheet.

Performance tests have shown,
7 - 11 minutes in Excel 2003
2 -3 minutes in Excel 2007
Same data, same code.

Did 2007 have huge performance gains?
Is there anything i can set in 2003 to get additional performance? Such as
shutting off calculation? Printer settings?
Something else?

thanks


 
Reply With Quote
 
 
 
 
Chip Pearson
Guest
Posts: n/a
 
      14th May 2009
Most people report the reverse -- Excel 2007 is slower than 2003. Your
performance gains are probably due the new multithreaded calculation
engine. This allows "simulatenous" (as far as that goes regarding
threads of execution) calcuation of two or more cells whose values do
not depend on the other. This can yield performance gains over the
strict and orderly cell by cell calculation in 2003.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Thu, 14 May 2009 11:22:15 -0500, "greg" <(E-Mail Removed)> wrote:

>Hello, a bit of a strange question.
>I have a vba program, which reads data from one sheet and writes to another
>sheet.
>
>Performance tests have shown,
>7 - 11 minutes in Excel 2003
>2 -3 minutes in Excel 2007
>Same data, same code.
>
>Did 2007 have huge performance gains?
>Is there anything i can set in 2003 to get additional performance? Such as
>shutting off calculation? Printer settings?
>Something else?
>
>thanks
>

 
Reply With Quote
 
greg
Guest
Posts: n/a
 
      14th May 2009
thanks,
Any tricks on excel 2003? excel settings i can look at? or do you think
that will not help?


"Chip Pearson" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Most people report the reverse -- Excel 2007 is slower than 2003. Your
> performance gains are probably due the new multithreaded calculation
> engine. This allows "simulatenous" (as far as that goes regarding
> threads of execution) calcuation of two or more cells whose values do
> not depend on the other. This can yield performance gains over the
> strict and orderly cell by cell calculation in 2003.
>
> Cordially,
> Chip Pearson
> Microsoft Most Valuable Professional
> Excel Product Group, 1998 - 2009
> Pearson Software Consulting, LLC
> www.cpearson.com
> (email on web site)
>
>
> On Thu, 14 May 2009 11:22:15 -0500, "greg" <(E-Mail Removed)> wrote:
>
>>Hello, a bit of a strange question.
>>I have a vba program, which reads data from one sheet and writes to
>>another
>>sheet.
>>
>>Performance tests have shown,
>>7 - 11 minutes in Excel 2003
>>2 -3 minutes in Excel 2007
>>Same data, same code.
>>
>>Did 2007 have huge performance gains?
>>Is there anything i can set in 2003 to get additional performance? Such
>>as
>>shutting off calculation? Printer settings?
>>Something else?
>>
>>thanks
>>



 
Reply With Quote
 
Chip Pearson
Guest
Posts: n/a
 
      14th May 2009
Charles Williams has quite a bit of info about Excel calculations and
how to optimize them on his site at
http://www.decisionmodels.com/index.htm

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Thu, 14 May 2009 11:53:06 -0500, "greg" <(E-Mail Removed)> wrote:

>thanks,
>Any tricks on excel 2003? excel settings i can look at? or do you think
>that will not help?
>
>
>"Chip Pearson" <(E-Mail Removed)> wrote in message
>news:(E-Mail Removed)...
>> Most people report the reverse -- Excel 2007 is slower than 2003. Your
>> performance gains are probably due the new multithreaded calculation
>> engine. This allows "simulatenous" (as far as that goes regarding
>> threads of execution) calcuation of two or more cells whose values do
>> not depend on the other. This can yield performance gains over the
>> strict and orderly cell by cell calculation in 2003.
>>
>> Cordially,
>> Chip Pearson
>> Microsoft Most Valuable Professional
>> Excel Product Group, 1998 - 2009
>> Pearson Software Consulting, LLC
>> www.cpearson.com
>> (email on web site)
>>
>>
>> On Thu, 14 May 2009 11:22:15 -0500, "greg" <(E-Mail Removed)> wrote:
>>
>>>Hello, a bit of a strange question.
>>>I have a vba program, which reads data from one sheet and writes to
>>>another
>>>sheet.
>>>
>>>Performance tests have shown,
>>>7 - 11 minutes in Excel 2003
>>>2 -3 minutes in Excel 2007
>>>Same data, same code.
>>>
>>>Did 2007 have huge performance gains?
>>>Is there anything i can set in 2003 to get additional performance? Such
>>>as
>>>shutting off calculation? Printer settings?
>>>Something else?
>>>
>>>thanks
>>>

>

 
Reply With Quote
 
Don Guillett
Guest
Posts: n/a
 
      14th May 2009
Post your code for comments


--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"greg" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> thanks,
> Any tricks on excel 2003? excel settings i can look at? or do you think
> that will not help?
>
>
> "Chip Pearson" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Most people report the reverse -- Excel 2007 is slower than 2003. Your
>> performance gains are probably due the new multithreaded calculation
>> engine. This allows "simulatenous" (as far as that goes regarding
>> threads of execution) calcuation of two or more cells whose values do
>> not depend on the other. This can yield performance gains over the
>> strict and orderly cell by cell calculation in 2003.
>>
>> Cordially,
>> Chip Pearson
>> Microsoft Most Valuable Professional
>> Excel Product Group, 1998 - 2009
>> Pearson Software Consulting, LLC
>> www.cpearson.com
>> (email on web site)
>>
>>
>> On Thu, 14 May 2009 11:22:15 -0500, "greg" <(E-Mail Removed)> wrote:
>>
>>>Hello, a bit of a strange question.
>>>I have a vba program, which reads data from one sheet and writes to
>>>another
>>>sheet.
>>>
>>>Performance tests have shown,
>>>7 - 11 minutes in Excel 2003
>>>2 -3 minutes in Excel 2007
>>>Same data, same code.
>>>
>>>Did 2007 have huge performance gains?
>>>Is there anything i can set in 2003 to get additional performance? Such
>>>as
>>>shutting off calculation? Printer settings?
>>>Something else?
>>>
>>>thanks
>>>

>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2003, 2007 and Exchange 2003, 2007 instantmsg68@gmail.com Microsoft Outlook 2 4th Nov 2008 03:41 AM
2003-->2007 recognize if i'm in 2007 or 2003 via code. =?Utf-8?B?TWlyaQ==?= Microsoft Excel Programming 3 15th Oct 2008 02:50 PM
Excel 2007, I write macros in 2003 is 2007 similar for VBA? Pros andcons please Simon Microsoft Excel Programming 3 5th Aug 2008 03:48 PM
Downgraded Oulook 2007/BCM 2007 back to Outlook 2003, major problems zipped Microsoft Outlook BCM 2 5th Jun 2007 03:38 AM
Downgraded Oulook 2007/BCM 2007 back to Outlook 2003, major problems zipped Microsoft Outlook BCM 1 29th May 2007 05:23 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:34 PM.