<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx</link><description>I’d like to shift gears a bit and talk about the work we’ve done to improve the experience around building and editing formulas. For most customers, this is a core activity in their daily use of the product. In planning for this version of Excel, we took</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482477</link><pubDate>Wed, 19 Oct 2005 03:29:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482477</guid><dc:creator>Graham</dc:creator><description>All very sensible. 64 levels of formula nesting, eh? Those ugly formula contests are going to get a whole lot more interesting...</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482500</link><pubDate>Wed, 19 Oct 2005 05:13:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482500</guid><dc:creator>Colin Banfield</dc:creator><description>There needs to be an easier way to build worksheet formulas for 64 levels of nesting and 255 arguments to be meaningful.  Perhaps a &amp;quot;Formula Composer&amp;quot; dialog box or something that allows you to build up a complex formula in parts and allows you to evaluate the partial formulas. When you're done, and the formula is displayed in the sheet, all of the parentheses would be automatically put in the correct places.&lt;br&gt;&lt;br&gt;Colin</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482510</link><pubDate>Wed, 19 Oct 2005 06:27:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482510</guid><dc:creator>Biff</dc:creator><description>I'm lovin' both the new formula bar and the name box!&lt;br&gt;&lt;br&gt;Will the new name box display dynamic named ranges? (which I guess are technically named formulas)&lt;br&gt;&lt;br&gt;Formula auto complete? Now that sounds interesting!</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482582</link><pubDate>Wed, 19 Oct 2005 12:37:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482582</guid><dc:creator>Jean-Marc Decouleur</dc:creator><description>These are long-awaited and very welcomed features. Thanks.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482634</link><pubDate>Wed, 19 Oct 2005 17:11:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482634</guid><dc:creator>Jim Rech</dc:creator><description>Nice touches for sure.  I'm curious to see if the active cell is potentially pushed off screen when the expanding formula bar pushes the top of the worksheet down. The grid would have to be scrolled upward to prevent it, which could get messy I imagine.&lt;br&gt;&lt;br&gt;Also, the worksheet window is maximized in the screen shots.  If it was not would the tabs disappear offscreen to the bottom?</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482710</link><pubDate>Wed, 19 Oct 2005 20:28:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482710</guid><dc:creator>Harlan Grove</dc:creator><description>First with regard to the limits. Other spreadsheets have accomodated more than 7 nesting levels and 30 function arguments for years. It's nice the Excel Development Team is finally brining common early 1990s spreadsheet functionality to Excel.&lt;br&gt;&lt;br&gt;Also, with regard to nesting levels, Excel's recalc engine has been able to accomodate existing formulas with more than 7 nesting levels for several versions, at least as far back as Excel 8 (97).&lt;br&gt;&lt;br&gt;For example, in 123 enter 1..20 in A1..A20. Then in B1 enter the formula&lt;br&gt;&lt;br&gt;@SUM(A1,@SUM(A2,@SUM(A3,@SUM(A4,@SUM(A5,&lt;br&gt;@SUM(A6,@SUM(A7,@SUM(A8,@SUM(A9,@SUM(A10,&lt;br&gt;@SUM(A11,@SUM(A12,@SUM(A13,@SUM(A14,@SUM(A15,&lt;br&gt;@SUM(A16,@SUM(A17,@SUM(A18,@SUM(A19,&lt;br&gt;A20)))))))))))))))))))&lt;br&gt;&lt;br&gt;and save the file in .XLS format from 123. Open it in Excel, and the B1 formula appears as&lt;br&gt;&lt;br&gt;=SUM(A1,SUM(A2,SUM(A3,SUM(A4,SUM(A5,SUM(A6,&lt;br&gt;SUM(A7,SUM(A8,SUM(A9,SUM(A10,SUM(A11,SUM(A12,&lt;br&gt;SUM(A13,SUM(A14,SUM(A15,SUM(A16,SUM(A17,&lt;br&gt;SUM(A18,SUM(A19,A20)))))))))))))))))))&lt;br&gt;&lt;br&gt;and it calculates correctly as 210. Select A1:A20, copy and paste special multiply on top of itself, and the B1 formula recalculates correctly as 2870.&lt;br&gt;&lt;br&gt;It would seem it was only Excel's formula parser that choked on more nesting levels.&lt;br&gt;&lt;br&gt;So y'all are FINALLY eliminating a limitation in the formula parser that's been inconsistent with Excel's recalc functionality for the better part of a decade at least? So bold!&lt;br&gt;&lt;br&gt;Now a real question, if we can resize the name box, does that mean we can finally effectively get rid of it? That is, can it be resized to zero width? Is that setting automatically stored as an application setting? If not, will there be some new object model property to set its width from a macro in Personal.xls?&lt;br&gt;&lt;br&gt;As for the formula bar, it's good it can now be restricted to 1 row of text. However, at 1024x768 screen resolution and 10 point typesize, the formula bar will only display 4300 or so characters, which means that when it resizes it'll effectively eliminate document windows from the application window.&lt;br&gt;&lt;br&gt;Did it not occur to anyone that it might have been better to provide a resizable dialog in which to edit formulas, and provide a cell pointer icon (e.g., like the one at the right side of the Row input cell entry box in the Table dialog) to shrink the formula entry dialog when in Point mode. Or even better, automatically shrink it in Point mode. Even better still, providing another icon that would automatically indent different nested levels to make formulas easier to check, e.g.,&lt;br&gt;&lt;br&gt;=IF(x=y,&lt;br&gt;  a,&lt;br&gt;  IF(x=z,&lt;br&gt;    IF(ISERROR(VLOOKUP(p,t,n,0)),&lt;br&gt;      &amp;quot;&amp;quot;,&lt;br&gt;      VLOOKUP(p,t,n,0)&lt;br&gt;    ),&lt;br&gt;    b&lt;br&gt;  )&lt;br&gt;)&lt;br&gt;&lt;br&gt;Or am I all wrong, and the new formula bar automatically collapses to a single line when the user enters Point mode?</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482727</link><pubDate>Wed, 19 Oct 2005 21:16:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482727</guid><dc:creator>DavidL</dc:creator><description>I'm sure I'm not using Excel properly, but there is one thing about the formula editor in the current version that annoys me tremendously and that I would like to see fixed: Way too often I am not able to use the arrow keys to move the cursor in the formula without inserting a cell reference instead.&lt;br&gt;Steps to reproduce:&lt;br&gt;&lt;br&gt;1. Start entering a formula in A1 (&amp;quot;=A2+&amp;quot;).&lt;br&gt;2. Use left arrow to go back to change the &amp;quot;A2&amp;quot; to &amp;quot;A3&amp;quot;.&lt;br&gt;3. Curse.&lt;br&gt;&lt;br&gt;Ever tried to adjust the range in a range dialog, e.g. the one for the pivot table source, by using only the keyboard? Excel will happily insert all kinds of cell references, even if they are not valid in that context, which feels totally unnecessary and unintuitive.&lt;br&gt;If someone knows of a trick to switch this behaviour off already today, I would be very grateful.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482730</link><pubDate>Wed, 19 Oct 2005 21:22:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482730</guid><dc:creator>Jim Rech</dc:creator><description>David L-&lt;br&gt;&lt;br&gt;The trick is to press F2 to switch between Enter and Edit modes.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482742</link><pubDate>Wed, 19 Oct 2005 21:42:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482742</guid><dc:creator>Biff</dc:creator><description>DavidL wrote:&lt;br&gt;&lt;br&gt;&amp;gt;3. Curse. &lt;br&gt;&lt;br&gt;You left out step 4: Repeat step 3.&lt;br&gt;&lt;br&gt;LOL!&lt;br&gt;&lt;br&gt;Been there done that!&lt;br&gt;&lt;br&gt;You just have to remember to enter edit mode as Jim Rech mentions.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482746</link><pubDate>Wed, 19 Oct 2005 21:54:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482746</guid><dc:creator>DavidL</dc:creator><description>Jim, Biff: Thanks guys, I owe you one!&lt;br&gt;Now, to get back to the UI topic, how do you make an important feature like this discoverable? Clippy, anyone?</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482747</link><pubDate>Wed, 19 Oct 2005 21:56:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482747</guid><dc:creator>DavidL</dc:creator><description>Biff: That's why they call it a &amp;quot;cursor&amp;quot;. :)&lt;br&gt;&lt;br&gt;5. ????&lt;br&gt;6. Profit!</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482758</link><pubDate>Wed, 19 Oct 2005 22:32:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482758</guid><dc:creator>Simon Murphy</dc:creator><description>David&lt;br&gt;sounds good - I have a few questions though:&lt;br&gt;-Will there be a way to turn off the annoying way pasting long text automatically increases the row height and turns on wrapping no matter what you the user previously set it too? &lt;br&gt;-does the 8k formula limit apply to array formulas too? I think you said not in a previous post?&lt;br&gt;-will the 255 formula arguments be accessible to xlls?&lt;br&gt;-also (finally) if calling a worksheet function in C# (say VS2005 for arguments sake) will I have to pass in all 255 arguments? (thats a lot of missings!), or will there be a full set of helper wrappers?(in the PIAs?)&lt;br&gt;(sorry for all the questions - thanks for the info!)&lt;br&gt;Cheers&lt;br&gt;Simon&lt;br&gt;</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482764</link><pubDate>Wed, 19 Oct 2005 22:54:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482764</guid><dc:creator>Rob van Gelder</dc:creator><description>Harlan,&lt;br&gt;&lt;br&gt;AudXL.xla on my website formats/indents a complex formula for easier reading...&lt;br&gt;&lt;br&gt;Hopefully similar functionality will be introduced to future versions of Excel.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Rob&lt;br&gt;</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482770</link><pubDate>Wed, 19 Oct 2005 23:09:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482770</guid><dc:creator>Jim Rech</dc:creator><description>&amp;gt;&amp;gt;Clippy, anyone? &lt;br&gt;&lt;br&gt;Ha! No I don't think so, David, thanks.  Status bar?  I know, a lot of people don't look there, but it would be easy to implement and better than nothing.&lt;br&gt;&lt;br&gt;Re range selecting in general,I don't know if an improved Ref Edit made the cut but there's room on that dialog to tell users the mode they are in and to press F2 to get to the other.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482775</link><pubDate>Wed, 19 Oct 2005 23:29:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482775</guid><dc:creator>DavidL</dc:creator><description>Jim,&lt;br&gt;Yes, Clippy is dead and buried, but it was quite helpful when it detected that the user had &amp;quot;got stuck&amp;quot; with a feature, like trying to type in the margin of Word by clicking there repeatedly or (in my case) inserting cell references in a formula with the arrow keys, yielding syntax errors.&lt;br&gt;An idea for the Office team: Reintroduce those &amp;quot;Clippy-tips&amp;quot;, but use a non-intrusive info-bar like IE6 SP2 does. </description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482786</link><pubDate>Thu, 20 Oct 2005 00:01:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482786</guid><dc:creator>Harlan Grove</dc:creator><description>Rob van Gelder...&lt;br&gt;...&lt;br&gt;|AudXL.xla on my website formats/indents a&lt;br&gt;|complex formula for easier reading... &lt;br&gt;&lt;br&gt;OK.&lt;br&gt;&lt;br&gt;I took a different path. Modified the syntax definition from another language in my text editor, and copy/paste back &amp;amp; forth between it an Excel.&lt;br&gt;&lt;br&gt;|Hopefully similar functionality will be&lt;br&gt;|introduced to future versions of Excel.&lt;br&gt;&lt;br&gt;Indeed.&lt;br&gt;&lt;br&gt;I wonder how skewed the sampling of user feedback/requests with respect to the 'formula bar experience' was if many (most?) of the people who work with long/complex formulas on a daily basis long ago gave up on hoping Microsoft would make any serious improvements.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482810</link><pubDate>Thu, 20 Oct 2005 00:57:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482810</guid><dc:creator>mschaef</dc:creator><description>&amp;quot;I wonder how skewed the sampling of user feedback/requests with respect to the 'formula bar experience' was if many (most?) of the people who work with long/complex formulas on a daily basis long ago gave up on hoping Microsoft would make any serious improvements. &amp;quot;&lt;br&gt;&lt;br&gt;Excel really needs two things: a way to manage editing complex formulas is one, and a way to ___simplify___ complex formulas is another.&lt;br&gt;&lt;br&gt;VBA UDF's aren't great because they aren't Excel's 'native tounge'. They require another learning curve and the performance hit of calling into another language whenever they are evaluated. &lt;br&gt;&lt;br&gt;Ideally (IMO), there'd be a way to add paramaters to range names. Are there any plans for such a thing in 12? :-)</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482837</link><pubDate>Thu, 20 Oct 2005 02:12:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482837</guid><dc:creator>headtoadie</dc:creator><description>While on the topic of Formula Bar, would it be possible to have it stop assuming everything entered without a preceding sign (+, - , =) is text? I mean it's a spreadsheet for goodness sakes!! By default it should assume everything entered is a number or a formula unless explicitly preceded by a quote or single quote to indicate text.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482844</link><pubDate>Thu, 20 Oct 2005 02:42:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482844</guid><dc:creator>David Gainer</dc:creator><description>Greetings.  Again, thanks for the comments, feedback, humour, and discussion.  One thing to note is that what I am presenting is our current builds.  We will be releasing a couple of betas, and as we get user feedback from that as well as other sources (including this blog, usability studies, etc.), we may tweak some designs.&lt;br&gt;&lt;br&gt;Let me try to answer some of the specific questions:&lt;br&gt;&lt;br&gt;Biff - The name box displays the same contents as in Excel 2003, which does not include named formulas.  We do have some new name management UI (coming in a post this week) though.&lt;br&gt;&lt;br&gt;Jim – We have added logic to not push the active cell off the screen when users are moving the formula bar, which I personally think works quite well.  Good point about the different window states – I will take a look.&lt;br&gt;&lt;br&gt;Harlan – No, we have not added a setting to get rid of the name box.  Also, we will never expand or collapse the formula bar without explicit user action, and we give the user control over how much space they want to devote to cell text.  Part of the reason we chose to not automatically collapse the formula bar is that we don’t know the user’s intention – they may be selecting another cell with a just as much text to edit.&lt;br&gt;&lt;br&gt;Simon – No change on the pasting text behaviour.  The 8k limit applies to array formulas.  The 255 formula arguments will be accessible to XLLs (I will put down XLLs as a topic for later).  Good question on C# - we are working on that now.&lt;br&gt;&lt;br&gt;mschaef – No news to announce there.&lt;br&gt;&lt;br&gt;headtoadie - No changes in this area either.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482930</link><pubDate>Thu, 20 Oct 2005 08:15:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482930</guid><dc:creator>Harlan Grove</dc:creator><description>Why not show screen images of the new formula bar with a *FORMULA* in it? The screen images all show text constants in the formula bar.&lt;br&gt;&lt;br&gt;Is there any good reason the insert function button needs to be so wide? It looks like it could hold the cute little dot on the left side and the f_sub_x symbol on the right side at 1/3 its current width. That'd leave more room to display formula text. Wouldn't that be a good thing?</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#482959</link><pubDate>Thu, 20 Oct 2005 10:12:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:482959</guid><dc:creator>Charles Williams</dc:creator><description>This is all excellent stuff.&lt;br&gt;I agree with Harlan that the dimple and insert function button seem large.&lt;br&gt;Also seems inconsistent (maybe this should be a question for Jensen): if you are using a resize bar to expand the formula bar vertically, why not also use a resize bar to move the divider between the name box and the formula bar?&lt;br&gt;And if you use the vertical resize bar to expand the formula bar, why not expand the name box vertically at the same time?&lt;br&gt;Thats what I used in the Name Manager addin and people seem happy with it.</description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#483248</link><pubDate>Fri, 21 Oct 2005 02:50:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:483248</guid><dc:creator>ben</dc:creator><description>Harlan... &lt;br&gt;&lt;br&gt;&amp;lt;Is there any good reason the insert function button needs to be so wide? It looks like it could hold the cute little dot on the left side and the f_sub_x symbol on the right side at 1/3 its current width. That'd leave more room to display formula text. Wouldn't that be a good thing?&amp;gt; &lt;br&gt;&lt;br&gt;I'd imagine the space next to the insert function button is there to hold the committ cancel buttons that appear when editing a formula same as current versions.  Did you forget about those? </description></item><item><title>re: Meet the Excel 12 formula bar, or “don’t hijack my grid!”</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#483482</link><pubDate>Fri, 21 Oct 2005 19:36:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:483482</guid><dc:creator>Harlan Grove</dc:creator><description>ben...&lt;br&gt;...&lt;br&gt;|I'd imagine the space next to the insert&lt;br&gt;|function button is there to hold the committ&lt;br&gt;|cancel buttons that appear when editing a&lt;br&gt;|formula same as current versions. Did you&lt;br&gt;|forget about those?&lt;br&gt;&lt;br&gt;You're probably right. I wouldn't so much say I forgot about them, more that I've never paid any attention to them since I use the keyboard exclusively to enter and edit formulas.&lt;br&gt;&lt;br&gt;Still, it looks like wasted space. Perhaps only the little dot on the left side is wasted space, or maybe it's some new feature as yet unmentioned. Even so, the new enter and cancel buttons would seem to be a bit larger (wider) than their current counterparts with no good reason to be wider since wider buttons mean a narrower formula bar.</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | Patio Chairs</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9688779</link><pubDate>Wed, 03 Jun 2009 05:38:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9688779</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | Patio Chairs</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patiochairsite.info/story.php?id=26687"&gt;http://patiochairsite.info/story.php?id=26687&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | adirondack chairs</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9750454</link><pubDate>Sun, 14 Jun 2009 16:25:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9750454</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | adirondack chairs</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://adirondackchairshub.info/story.php?id=2138"&gt;http://adirondackchairshub.info/story.php?id=2138&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio cushions</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9751134</link><pubDate>Sun, 14 Jun 2009 19:19:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9751134</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio cushions</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patiocushionsource.info/story.php?id=233"&gt;http://patiocushionsource.info/story.php?id=233&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio set</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9771560</link><pubDate>Thu, 18 Jun 2009 05:00:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9771560</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio set</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patiosetsite.info/story.php?id=81"&gt;http://patiosetsite.info/story.php?id=81&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio umbrella</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9772578</link><pubDate>Thu, 18 Jun 2009 07:07:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9772578</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | patio umbrella</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://patioumbrellasource.info/story.php?id=1783"&gt;http://patioumbrellasource.info/story.php?id=1783&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | garden decor</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9781789</link><pubDate>Fri, 19 Jun 2009 10:26:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9781789</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | garden decor</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://gardendecordesign.info/story.php?id=5182"&gt;http://gardendecordesign.info/story.php?id=5182&lt;/a&gt;&lt;/p&gt;
</description></item><item><title> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | porch swing</title><link>http://blogs.msdn.com/excel/archive/2005/10/18/482471.aspx#9782140</link><pubDate>Fri, 19 Jun 2009 10:42:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9782140</guid><dc:creator> Microsoft Excel Meet the Excel 12 formula bar or don t hijack my grid | porch swing</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://fancyporchswing.info/story.php?id=2283"&gt;http://fancyporchswing.info/story.php?id=2283&lt;/a&gt;&lt;/p&gt;
</description></item></channel></rss>