<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Coffeehouse - Excel 2013 Performance Issue</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Coffeehouse - Excel 2013 Performance Issue</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sun, 26 May 2013 06:16:28 GMT</pubDate>
	<lastBuildDate>Sun, 26 May 2013 06:16:28 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>30</c9:totalResults>
	<c9:pageCount>-30</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>Hi,</p><p>I have noticed that password protecting a workbook and/or a worksheet from within VBA runs over&nbsp; two thousand times slower in Excel 2013 than it does it Excel 2010.</p><p>Consider this simple code snippet</p><p><pre class="brush: vb">Sub Test()
    Dim i As Integer, max As Integer, tStart As Single
    max = 100
    tStart = Timer
    For i = 1 To max
        ActiveWorkbook.Worksheets(1).Protect Password:=&quot;pword&quot;
        ActiveWorkbook.Protect Password:=&quot;pword&quot;
        ActiveWorkbook.Unprotect Password:=&quot;pword&quot;
        ActiveWorkbook.Worksheets(1).Unprotect Password:=&quot;pword&quot;
    Next
    Debug.Print max &amp; &quot; iterations took &quot; &amp; Timer - tStart &amp; &quot; seconds.&quot;
End Sub
</pre></p><p>This takes 142 seconds in Excel 2013 and 0.06 seconds on the same computer using Excel 2010.</p><p>The same code without the passwords takes just 0.15 seconds in Excel 2013 and 0.05 seconds in Excel 2010. A factor of 3.</p><p>I am using Excel 2013 version 15.0.4420.1017 which as far as I can tell is the most up to date.</p><p>Has anyone else experienced this type of performance issue and found a fix for it?</p><p>Thanks in advance</p><p>Rob</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a73083cd39e24c0c9e58a13400c470ef#a73083cd39e24c0c9e58a13400c470ef</link>
		<pubDate>Thu, 27 Dec 2012 11:55:13 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a73083cd39e24c0c9e58a13400c470ef#a73083cd39e24c0c9e58a13400c470ef</guid>
		<dc:creator>robwellis</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/robwellis/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>Maybe they used a stronger encryption algorithm. Also, your code doesn't make sense.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/701aa2f33802488c8b5ea13400f81a80#701aa2f33802488c8b5ea13400f81a80</link>
		<pubDate>Thu, 27 Dec 2012 15:03:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/701aa2f33802488c8b5ea13400f81a80#701aa2f33802488c8b5ea13400f81a80</guid>
		<dc:creator>ZippyV</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ZippyV/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>It's not a stronger encryption algorithm - it's better a better key&nbsp;derivation&nbsp;algorithm.</p><p>Basically what's going on is that people suck as suggesting good passwords, and consequently an attacker will usually be able to guess your password for a file within a couple of billion guesses for good passwords and a couple of million for less good ones.</p><p>For an attacker, the length of time each guess takes is now really important. Whereas a user spends most of his time using Excel, an attacker spends most of his time trying to decrypt the first block of your file to see if it's been decrypted. This means that upping the length of time to derive a key from a password has a disproportionately negative effect on an attacker compared with on a user.</p><p>For example, if Microsoft choose a key derivation algorithm that takes, say, half a second (up from a millionth of a second) to turn a password attempt into a key to test, then the startup time for Excel goes from say 10 seconds to 10.5 seconds - an overall trivial&nbsp;inconvienience&nbsp;to the user.</p><p>Now let's say that your password is good enough that it takes 10 billion guesses (say a seven letter &quot;good&quot; password). It used to take an attacker 2 and a half minutes to brute force to get in; it now takes 158 years.</p><p>Effectively what you're seeing is this is practice. Microsoft is upping the strength of the key&nbsp;derivation&nbsp;algorithm to help protect your file from having the password brute forced by attackers.</p><p>What's perhaps slightly less obvious from your example, is that this has been happening since Excel 2003. Each revision ups the key derevation complexity in order to &quot;catch up&quot; with technology making longer lengths more acceptable to users (who have better hardware) whilst still keeping brute force out of reach of attackers, who also have markedly better hardware than when previous versions of Excel were released.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d558862fd78b498f944aa134011f6274#d558862fd78b498f944aa134011f6274</link>
		<pubDate>Thu, 27 Dec 2012 17:26:20 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d558862fd78b498f944aa134011f6274#d558862fd78b498f944aa134011f6274</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>So @<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#ca73083cd39e24c0c9e58a13400c470ef">robwellis</a>, what is the use case for having to unprotect (or attempt to unprotect) a workbook so often?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/847ac2e240a947c28f33a1340134449b#847ac2e240a947c28f33a1340134449b</link>
		<pubDate>Thu, 27 Dec 2012 18:42:22 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/847ac2e240a947c28f33a1340134449b#847ac2e240a947c28f33a1340134449b</guid>
		<dc:creator>cbae</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/cbae/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@cbae Of course my code doesn't actually look like this but we have complex workbooks with many protected sheets. There is a time when the code unprotects the workbook and then all of the worksheets, manipulates them and then reprotects them. There is a huge performance issue between Excel 2010 and Excel 2013 which is all down to the protection issue.</p><p>@ZippyV &quot;Doesn't make sense&quot; Perhaps not in the isolated example, that was just to illustrate the performance issue. I thought I'd keep the post simple so people could understand it <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>I agree with @evildictator but they've really messed up on this one. I have found other people moaning about this but no resolution as yet.</p><p>Anyway, I have had a direct response from Microsoft to say they are aware of this issue and are currently researching the problem.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/bafd37436c754b8d8149a13401612af3#bafd37436c754b8d8149a13401612af3</link>
		<pubDate>Thu, 27 Dec 2012 21:25:50 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/bafd37436c754b8d8149a13401612af3#bafd37436c754b8d8149a13401612af3</guid>
		<dc:creator>robwellis</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/robwellis/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#cbafd37436c754b8d8149a13401612af3">robwellis</a>: Did it do the same thing in the preview release?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b10c4020e7ff49b0ba88a134017e9e77#b10c4020e7ff49b0ba88a134017e9e77</link>
		<pubDate>Thu, 27 Dec 2012 23:13:04 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b10c4020e7ff49b0ba88a134017e9e77#b10c4020e7ff49b0ba88a134017e9e77</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#cb10c4020e7ff49b0ba88a134017e9e77">kettch</a>:yes, it did. Why?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/2f8923a4577d41848de5a13501792758#2f8923a4577d41848de5a13501792758</link>
		<pubDate>Fri, 28 Dec 2012 22:53:10 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/2f8923a4577d41848de5a13501792758#2f8923a4577d41848de5a13501792758</guid>
		<dc:creator>robwellis</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/robwellis/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#ca73083cd39e24c0c9e58a13400c470ef">robwellis</a>:</p><p>I guess you just to have unprotect all before the entire code is ran and protect afterward instead of doing it per method call because I think that's more likely what you were doing.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/298b2743765b424f84b2a1360016ca89#298b2743765b424f84b2a1360016ca89</link>
		<pubDate>Sat, 29 Dec 2012 01:22:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/298b2743765b424f84b2a1360016ca89#298b2743765b424f84b2a1360016ca89</guid>
		<dc:creator>magicalclick</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/magicalclick/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/bafd37436c754b8d8149a13401612af3">1 day&nbsp;ago</a>, <a href="/Niners/robwellis">robwellis</a> wrote</p><p>I agree with @evildictator but they've really messed up on this one. I have found other people moaning about this but no resolution as yet.</p><p></p></div></blockquote><p></p><p>Sadly this one's going to come back as a &quot;won't fix&quot; from the team. This behaviour is by design.</p><p>A better question is why your program needs to act in this way (other than for the obvious reason that it did it that way before).</p><p>1. Do your workbooks really need to be protected (given that you're unprotecting them anyway, which kind of makes the protection redundant).</p><p>2. Do you need to unprotect the workbook to use it?</p><p>3. Are you doing the processing on the user's machine? If so, consider offloading the work onto servers. If not, consider upgrading the servers to cope with the load.</p><p>4. You will probably find that parallelising the work makes a big difference, and that the cheapest method of parallelism is to run your program N times&nbsp;simultaneously. Each program can pick a file out of the &quot;encrypted files&quot; folder, move it to the &quot;in use&quot; folder and then unprotect, work and reprotect the file. It can then move the final file to the &quot;done&quot; folder. Now run the program 40 times and leave them running and you'll very quickly chew through the files.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/6fb325e95f5141e7b600a136001945e4#6fb325e95f5141e7b600a136001945e4</link>
		<pubDate>Sat, 29 Dec 2012 01:32:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/6fb325e95f5141e7b600a136001945e4#6fb325e95f5141e7b600a136001945e4</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#c2f8923a4577d41848de5a13501792758">robwellis</a>: Nothing really. Just checking to make sure that you reported the problem through the proper channels during the beta period. It's been my experience that only a small percentage of people who complain about problems have actually reported them. Office even had the smiley/frowny face buttons to make it easy.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/8fcf16d54d904fcaa1e1a13600550788#8fcf16d54d904fcaa1e1a13600550788</link>
		<pubDate>Sat, 29 Dec 2012 05:09:34 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/8fcf16d54d904fcaa1e1a13600550788#8fcf16d54d904fcaa1e1a13600550788</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#c8fcf16d54d904fcaa1e1a13600550788">kettch</a>:Yes, I've reported it elsewhere and done the frowny face thing too.I've been told that it's being investigated internally but I'm not expecting it to be fixed anytime soon.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b8574df82516426f9e3fa13d00ae3eb1#b8574df82516426f9e3fa13d00ae3eb1</link>
		<pubDate>Sat, 05 Jan 2013 10:34:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b8574df82516426f9e3fa13d00ae3eb1#b8574df82516426f9e3fa13d00ae3eb1</guid>
		<dc:creator>robwellis</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/robwellis/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>I just installed 2013 and thankfully did not remove 2010- all macros run very slowly under 2013</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/4ba0633d592748cc8b2fa13f016a3a01#4ba0633d592748cc8b2fa13f016a3a01</link>
		<pubDate>Mon, 07 Jan 2013 21:58:49 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/4ba0633d592748cc8b2fa13f016a3a01#4ba0633d592748cc8b2fa13f016a3a01</guid>
		<dc:creator>stevefarrar</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/stevefarrar/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#ca73083cd39e24c0c9e58a13400c470ef">robwellis</a>:Same here.</p><p>MS: It's a shame.</p><p>The performance on Excel 2013 is very very very poor.</p><p>I'm glad to keep Excel 2010 in my machine.</p><p>I'm fell like a moron to bought MS Office 2013.</p><p>MS is doing a good job to get out of market.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/7fbd0978669a42abb812a16601447fb0#7fbd0978669a42abb812a16601447fb0</link>
		<pubDate>Fri, 15 Feb 2013 19:41:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/7fbd0978669a42abb812a16601447fb0#7fbd0978669a42abb812a16601447fb0</guid>
		<dc:creator>ErwinHeisler</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ErwinHeisler/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@Erwin: Is your problem also related to password protecting the files? If not, it might be better to create a new thread.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d19d94a39c634635a39ba166014501c7#d19d94a39c634635a39ba166014501c7</link>
		<pubDate>Fri, 15 Feb 2013 19:43:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d19d94a39c634635a39ba166014501c7#d19d94a39c634635a39ba166014501c7</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#cd19d94a39c634635a39ba166014501c7">evildictaitor</a>: My files are not password protected.</p><p>I have a lot of excel files with macros and the macros run very slowly (compared with MS Excel 2010).</p><p>Even a simple task of put a new number in a cell is slow process (after press enter of course).</p><p>When we bought a soft we couldn't think that the performance will be worst than the older.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b82bcab794b24b449076a166014729d3#b82bcab794b24b449076a166014729d3</link>
		<pubDate>Fri, 15 Feb 2013 19:51:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b82bcab794b24b449076a166014729d3#b82bcab794b24b449076a166014729d3</guid>
		<dc:creator>ErwinHeisler</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ErwinHeisler/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/b82bcab794b24b449076a166014729d3">9 minutes&nbsp;ago</a>, <a href="/Niners/ErwinHeisler">ErwinHeisler</a> wrote</p><p>When we bought a soft we couldn't think that the performance will be worst than the older.</p><p></p></div></blockquote><p></p><p>Really? Sounds like you need to read this then:</p><p><a href="http://en.wikipedia.org/wiki/Wirth&#39;s_law ">http&#58;&#47;&#47;en.wikipedia.org&#47;wiki&#47;Wirth&#39;s_law&#160;</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/60e95c787d704892ab37a166014a3898#60e95c787d704892ab37a166014a3898</link>
		<pubDate>Fri, 15 Feb 2013 20:02:17 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/60e95c787d704892ab37a166014a3898#60e95c787d704892ab37a166014a3898</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#c60e95c787d704892ab37a166014a3898">evildictaitor</a>: Really...</p><p>So I guess I have to maintain my:</p><p>Intel i7-3960X CPU @ 3.30GHz, 16 GB RAM, SSD SATA 3 - 480GB.</p><p>and</p><p>use EXCEL 95 on it.</p><p>Luckily my Acrobat XI, AutoCAD 2012, Alibre 2012, ... performance better than the previous version.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/4e0d06bfd44d4b239f08a166014f7e1f#4e0d06bfd44d4b239f08a166014f7e1f</link>
		<pubDate>Fri, 15 Feb 2013 20:21:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/4e0d06bfd44d4b239f08a166014f7e1f#4e0d06bfd44d4b239f08a166014f7e1f</guid>
		<dc:creator>ErwinHeisler</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ErwinHeisler/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#cb82bcab794b24b449076a166014729d3">ErwinHeisler</a>: that is indeed concerning since it is a generic performance issue now.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/1bce9ebfc4424b0fb1f3a16601575ad6#1bce9ebfc4424b0fb1f3a16601575ad6</link>
		<pubDate>Fri, 15 Feb 2013 20:50:07 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/1bce9ebfc4424b0fb1f3a16601575ad6#1bce9ebfc4424b0fb1f3a16601575ad6</guid>
		<dc:creator>magicalclick</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/magicalclick/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/4e0d06bfd44d4b239f08a166014f7e1f">25 minutes&nbsp;ago</a>, <a href="/Niners/ErwinHeisler">ErwinHeisler</a> wrote</p><p>Luckily my Acrobat XI, AutoCAD 2012, Alibre 2012, ... performance better than the previous version.</p><p></p></div></blockquote><p></p><p>I might be inclined to believe you, except you list Adobe products and AutoCAD.</p><p>Software is a complex beast, and often &quot;performance issues&quot; aren't always the fault of the software or hardware, and are difficult to pin down.</p><p>I just did some test with Excel, and it's performing beautifully on my dual core gen2 i5, even though I'm running high memory and CPU utilization because of something else I'm running. As impressive as your machine may be, you've got something else going on.</p><p>&nbsp;</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/716cf1d486664cb29933a16601594bc4#716cf1d486664cb29933a16601594bc4</link>
		<pubDate>Fri, 15 Feb 2013 20:57:11 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/716cf1d486664cb29933a16601594bc4#716cf1d486664cb29933a16601594bc4</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/4e0d06bfd44d4b239f08a166014f7e1f">57 minutes&nbsp;ago</a>, <a href="/Niners/ErwinHeisler">ErwinHeisler</a> wrote</p><p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#c60e95c787d704892ab37a166014a3898">evildictaitor</a>: Really...</p><p>So I guess I have to maintain my:</p><p>Intel i7-3960X CPU @ 3.30GHz, 16 GB RAM, SSD SATA 3 - 480GB.</p><p>and</p><p>use EXCEL 95 on it.</p><p>Luckily my Acrobat XI, AutoCAD 2012, Alibre 2012, ... performance better than the previous version.</p><p></p></div></blockquote><p></p><p>Thankfully due to <a href="http://en.wikipedia.org/wiki/Moore's_law">Moore's law</a>&nbsp;your computer hardware gets enough faster in any given timeframe to cope with the fact that the software in that timeframe is getting slower (and this is why most people don't notice).</p><p>But the key thing here is that if you upgrade your software and never upgrade your hardware, after a while it's gonna get painful.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a1ba08ab30614227b7bea166015f91a5#a1ba08ab30614227b7bea166015f91a5</link>
		<pubDate>Fri, 15 Feb 2013 21:20:01 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a1ba08ab30614227b7bea166015f91a5#a1ba08ab30614227b7bea166015f91a5</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/a1ba08ab30614227b7bea166015f91a5">43 minutes&nbsp;ago</a>, <a href="/Niners/evildictaitor">evildictait​or</a> wrote</p><p>*snip*</p><p>Thankfully due to <a href="http://en.wikipedia.org/wiki/Moore's_law">Moore's law</a>&nbsp;your computer hardware gets enough faster in any given timeframe to cope with the fact that the software in that timeframe is getting slower (and this is why most people don't notice).</p><p></p></div></blockquote><p></p><p>Moore's law is a poor excuse and IMO overly abused.</p><p>Edit: &quot;Moore's law states: You're holding it wrong.&quot;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/770094668bdb4eaca0d1a166016c9ce7#770094668bdb4eaca0d1a166016c9ce7</link>
		<pubDate>Fri, 15 Feb 2013 22:07:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/770094668bdb4eaca0d1a166016c9ce7#770094668bdb4eaca0d1a166016c9ce7</guid>
		<dc:creator>DeathByVisualStudio</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/DeathByVisualStudio/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/770094668bdb4eaca0d1a166016c9ce7">2 hours&nbsp;ago</a>, <a href="/Niners/DeathByVisualStudio">DeathBy​VisualStudio</a> wrote</p><p>Moore's law is a poor excuse and IMO overly abused.</p><p>Edit: &quot;Moore's law states: You're holding it wrong.&quot;</p><p></p></div></blockquote><p></p><p>Who uses it as an excuse?</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/7baff65c42494884b8d6a1670007a28a#7baff65c42494884b8d6a1670007a28a</link>
		<pubDate>Sat, 16 Feb 2013 00:27:47 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/7baff65c42494884b8d6a1670007a28a#7baff65c42494884b8d6a1670007a28a</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#c7baff65c42494884b8d6a1670007a28a">evildictaitor</a>:I understand what you said, but it sound like a excuse. Sorry.</p><p>It's unforgivable that MS release Excel with a lot of flaw in performance (it's a calculation program for a God sake).</p><p>Are the programmers relaxed about computers getting faster and didn't pay attention in theirs code?</p><p>Why we users should pay to get a inferior product? MS are losing focus. I'm sad because I used to love this company.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b96db9dc6dbb42e2ba0fa17101050216#b96db9dc6dbb42e2ba0fa17101050216</link>
		<pubDate>Tue, 26 Feb 2013 15:50:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/b96db9dc6dbb42e2ba0fa17101050216#b96db9dc6dbb42e2ba0fa17101050216</guid>
		<dc:creator>ErwinHeisler</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/ErwinHeisler/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p><span></p><blockquote><div class="quoteText"></span><p></p><p>It's unforgivable that MS release Excel with a lot of flaw in performance (it's a calculation program for a God sake).</p><p><span></p></div></blockquote></span><p></p><p><span>The fact that Excel uses strong key generation to secure your document when you click the &quot;I would like to secure my Excel document with strong key generation&quot; is not a performance issue. It's&nbsp;<span><em>by design</em>. In fact, if it were fast to open large numbers of password protected files, it would be fast to brute force passwords, and someone would log it as an Important bug at Microsoft and tell them to fix it.</span></span></p><p><span><span>If you're talking about some other performance defect in Excel, that's fine, but open a new thread to discuss it. This particular thread discusses slowness in opening password protected documents. This slow down is&nbsp;<a href="http://en.wikipedia.org/wiki/Key_stretching"><em><strong>by design</strong>&nbsp;</em></a><span><a href="http://en.wikipedia.org/wiki/Key_stretching">in order to&nbsp;</a><span><a href="http://en.wikipedia.org/wiki/Key_stretching"><em><strong>keep your documents safe</strong></em></a>, and if you don't like it you can turn <strong><em>password protection off</em></strong>.</span></span><br></span></span></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/77df95bef03d4069b426a171013ccc8b#77df95bef03d4069b426a171013ccc8b</link>
		<pubDate>Tue, 26 Feb 2013 19:13:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/77df95bef03d4069b426a171013ccc8b#77df95bef03d4069b426a171013ccc8b</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Post Permalink" href="/Forums/Coffeehouse/Excel-2013-Performance-Issue/b96db9dc6dbb42e2ba0fa17101050216">20 hours&nbsp;ago</a>, <a href="/Niners/ErwinHeisler">ErwinHeisler</a> wrote</p><p>(it's a calculation program for a God sake).</p><p></p></div></blockquote><p></p><p>Actually it's not, and using it as such will lead to poor performance. It's spreadsheet software, primarily designed for simple handling and display tasks of business data. If you're doing heavy calculations you want to use something like <a href="http://originlab.com/">this</a>, <a href="http://www.wolfram.co.uk/mathematica/">this</a>, <a href="http://www.mathworks.co.uk/products/matlab/">this</a>&nbsp;or <a href="http://www.microsoft.com/visualstudio/eng/">this</a>.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/f1b01ac01ffb48ed8483a17200cc9458#f1b01ac01ffb48ed8483a17200cc9458</link>
		<pubDate>Wed, 27 Feb 2013 12:24:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/f1b01ac01ffb48ed8483a17200cc9458#f1b01ac01ffb48ed8483a17200cc9458</guid>
		<dc:creator>GoddersUK</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/GoddersUK/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@<a href="/Forums/Coffeehouse/Excel-2013-Performance-Issue#cf1b01ac01ffb48ed8483a17200cc9458">GoddersUK</a>: I'm greatly disturbed by how much software uses Excel as a calculation engine on the back-end.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/98b003d7103c4e31b224a1720111f18b#98b003d7103c4e31b224a1720111f18b</link>
		<pubDate>Wed, 27 Feb 2013 16:37:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/98b003d7103c4e31b224a1720111f18b#98b003d7103c4e31b224a1720111f18b</guid>
		<dc:creator>kettch</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/kettch/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>A bit late to the table with this but I found this thread from a google search.</p><p>I work within a large British college and we have switched to Office 2013. My job is to create and maintain custom reports based within excel so I use VBA the majority of my working time.</p><p>Just about every single report I run has at least doubled in processing time since switching from 2010 to 2013. Only one has a similar macro as mentioned here to do with locking/unlocking sheets. The rest are simple data manipulation from imported documents (like loading in a raw data dump and producing a report from it) and they are all a lot slower too.</p><p>I can do the usual things such as hiding screen updates whilst running but again still a lot slower. Im on a decent spec computer and also tried on one of the top end i7 we have and still a ton slower.</p><p>Quite disappointed with 2013 really.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/da71236cb71749ad9205a19400b0d968#da71236cb71749ad9205a19400b0d968</link>
		<pubDate>Tue, 02 Apr 2013 10:43:53 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/da71236cb71749ad9205a19400b0d968#da71236cb71749ad9205a19400b0d968</guid>
		<dc:creator>AHeald</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/AHeald/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>@AHeald: Is your problem specifically related to password protected Excel documents? If not, you might want to avoid confusing the issue by posting your problem as a different thread.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/8383771baa2242d9b2f6a19400f8e973#8383771baa2242d9b2f6a19400f8e973</link>
		<pubDate>Tue, 02 Apr 2013 15:06:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/8383771baa2242d9b2f6a19400f8e973#8383771baa2242d9b2f6a19400f8e973</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>Robwellis</p><p>Office 2013 has silently introduced&nbsp;security changes in order to strengthen Excel protection. Excel 2013&nbsp;uses a SHA-2 class SHA512 algorithm to calculate the hash values for the encryption keys, which cannot be cracked within a reasonable amount of time using the brute force methods applicable up to Excel 2010.&nbsp;</p><p>Have you noticed that sheet protect / unprotect VBA methods run slightly slower in Excel 2013 ?&nbsp;- That's because the new complex encryption algorithm takes longer to compute.<br><br>It is impossible to find multiple passwords that share the same hash value in Excel 2013, as was the case with Excel up to 2010 version.</p><p>Please read:</p><p><a href="http://www.spreadsheet1.com/sheet-protection-2013.html">www.spreadsheet1.com/sheet-protection-2013.html</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d5f175e91b6e46eb8b8da1b3003040a1#d5f175e91b6e46eb8b8da1b3003040a1</link>
		<pubDate>Fri, 03 May 2013 02:55:40 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/d5f175e91b6e46eb8b8da1b3003040a1#d5f175e91b6e46eb8b8da1b3003040a1</guid>
		<dc:creator>Spreadsheet1</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Spreadsheet1/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Excel 2013 Performance Issue</title>
		<description><![CDATA[<p>I'll explain why an app would do this:</p><p>My app (since 10 years..) lets a user compare two workbooks. In order to read all cell properties without errors I need the passwords of protected sheets. I'll also need the passwords if a user decides to &quot;highlight&quot; results. &nbsp;My current approach is trying each supplied password (plus space ,x, xx and xxx ) on all worksheets, which is/was convenient. I'll find a different approach for xl15.</p><p>My app always works with form plus 2 windows.. &nbsp;the change from MDI to SDI was a nightmare involving a lot of &quot;hooks/subclassing&quot; to get it solved. This is just a minor hiccup. And in my experience xl2013 isn't all that slow except on the UI side: activating window/sheet/range requires up to 250ms until fully rendered.</p><p>I've learned a long time ago to avoid screenupdating (as in &quot;select&quot; and &quot;activate&quot;) until the code is ready to return to the user. xl15 does a lot more on a simple selection:&nbsp;the &quot;selection&quot; box is animated and each window has a ribbon with a &quot;few&quot; callbacks. A lot happens on a simple window activate and it ain't all pretty. &nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a26b39882f4e474cb894a1bd00770921#a26b39882f4e474cb894a1bd00770921</link>
		<pubDate>Mon, 13 May 2013 07:13:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/Excel-2013-Performance-Issue/a26b39882f4e474cb894a1bd00770921#a26b39882f4e474cb894a1bd00770921</guid>
		<dc:creator>keepITcool</dc:creator>
		<slash:comments>30</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/keepITcool/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>