<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.excelrange.com &#187; Märt Parker</title>
	<atom:link href="http://www.excelrange.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelrange.com</link>
	<description>Sharing Excel skills</description>
	<lastBuildDate>Tue, 11 Jan 2011 10:09:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quickly paste only values</title>
		<link>http://www.excelrange.com/quickly-paste-only-values/</link>
		<comments>http://www.excelrange.com/quickly-paste-only-values/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 09:50:07 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=322</guid>
		<description><![CDATA[The following macro will be the same as &#8216;Paste Special&#8217; -&#62; &#8216;Values&#8217;.
Assign a keyboard shortcut to the macro and it will significantly improve work speed.

Sub PasteVal()

    Selection.PasteSpecial Paste:=xlValues

End Sub

]]></description>
			<content:encoded><![CDATA[<p>The following macro will be the same as &#8216;Paste Special&#8217; -&gt; &#8216;Values&#8217;.</p>
<p>Assign a keyboard shortcut to the macro and it will significantly improve work speed.</p>
<pre>
Sub PasteVal()

    Selection.PasteSpecial Paste:=xlValues

End Sub
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/quickly-paste-only-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TIP: How to Find or Replace New Lines in Cells</title>
		<link>http://www.excelrange.com/tip-how-to-find-or-replace-new-lines-in-cells/</link>
		<comments>http://www.excelrange.com/tip-how-to-find-or-replace-new-lines-in-cells/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 12:37:50 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[time saving]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=315</guid>
		<description><![CDATA[Using ASCII codes it is possible to find or replace invisible characters like newlines in Excel worksheet. E.g. when needed to find newlines and replace them with something else, you can use ALT+010 in the search field.
The same technique is usable for changing certain characters into new lines (inserting newlines instead of comas or semicolons [...]]]></description>
			<content:encoded><![CDATA[<p>Using ASCII codes it is possible to find or replace invisible characters like newlines in Excel worksheet. E.g. when needed to find newlines and replace them with something else, you can use ALT+010 in the search field.</p>
<p>The same technique is usable for changing certain characters into new lines (inserting newlines instead of comas or semicolons e.g.).</p>
<p>Newlines are created in Excel while typing in the cell and pressing ALT+Enter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/tip-how-to-find-or-replace-new-lines-in-cells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timesaving macro concatenates cell values</title>
		<link>http://www.excelrange.com/timesaving-macro-concatenates-cell-values/</link>
		<comments>http://www.excelrange.com/timesaving-macro-concatenates-cell-values/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 15:55:43 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[macros]]></category>
		<category><![CDATA[time saving]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=310</guid>
		<description><![CDATA[While working with spreadsheet data, it&#8217;s common to face situations where you have to manually reorder or transform data. Macros are of good help then. I&#8217;ll share an example of a quite common case where simple macro can help save a lot of time.
Case: the spreadsheet contains manually entered and badly structured data. You need [...]]]></description>
			<content:encoded><![CDATA[<p>While working with spreadsheet data, it&#8217;s common to face situations where you have to manually reorder or transform data. Macros are of good help then. I&#8217;ll share an example of a quite common case where simple macro can help save a lot of time.</p>
<p>Case: the spreadsheet contains manually entered and badly structured data. You need to paste together the data from various cells, but you can&#8217;t do it with formulas because every situation is slightly different (contains different number of rows e.g.). Basically, you need a tool that takes the contents of currently selected cells, concatenates the values and pastes the outcome somewhere.</p>
<p>Problem and the desired outcome is depicted on the following screenshot.</p>
<p><a href="http://www.excelrange.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-17.42.10.png" rel="lightbox[310]"><img class="alignnone size-medium wp-image-311" title="Problem description" src="http://www.excelrange.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-17.42.10-300x171.png" alt="" width="300" height="171" /></a></p>
<p>As a solution, you can use a simple macro that takes the contents of the selection, concatenates it using newlines between values and pastes the outcome to the first selected cell. The code that does this is on the following screenshot. It uses Selection.Cells property that refers to the currently selected range of cells.</p>
<p><a href="http://www.excelrange.com/wp-content/uploads/2010/11/macro_code.png" rel="lightbox[310]"><img class="alignnone size-medium wp-image-312" title="VB macro code for concatenating cell values" src="http://www.excelrange.com/wp-content/uploads/2010/11/macro_code-300x291.png" alt="" width="300" height="291" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/timesaving-macro-concatenates-cell-values/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Excel 2008 for Mac flaws and problems vol 2</title>
		<link>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems-vol-2/</link>
		<comments>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems-vol-2/#comments</comments>
		<pubDate>Tue, 25 May 2010 11:12:18 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel 2008]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=291</guid>
		<description><![CDATA[Some additional points why Excel 2008 isn&#8217;t a good choice for business users. If you use PC in the office and want to edit your VBA/macros at home on the Mac, you can&#8217;t:

formula bar in Excel 2008 is disturbing. On laptop screen it gets lost behind other windows. 2004 version was better.
no Data Analysis pack
no [...]]]></description>
			<content:encoded><![CDATA[<div>Some additional points why Excel 2008 isn&#8217;t a good choice for business users. If you use PC in the office and want to edit your VBA/macros at home on the Mac, you can&#8217;t:</div>
<ul>
<li>formula bar in Excel 2008 is disturbing. On laptop screen it gets lost behind other windows. 2004 version was better.</li>
<li>no Data Analysis pack</li>
<li>no VBA macro support</li>
</ul>
<p><a href="http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems/">Excel 2008 for Mac flaws and problems vol 1 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems-vol-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Excel 2008 for Mac flaws and problems</title>
		<link>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems/</link>
		<comments>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:19:30 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel 2008]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=276</guid>
		<description><![CDATA[Microsoft obviously doesn&#8217;t like the Mac platform. In Excel 2008, there are some really terrible functionality-cuts that will disturb every professional Excel user. And will force you to use Office 2004 or the PC version with a virtual PC (Parallels in my case).
I&#8217;ll collect here my findings of the serious problems I&#8217;ve found, bit by [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft obviously doesn&#8217;t like the Mac platform. In Excel 2008, there are some really terrible functionality-cuts that will disturb every professional Excel user. And will force you to use Office 2004 or the PC version with a virtual PC (Parallels in my case).</p>
<p>I&#8217;ll collect here my findings of the serious problems I&#8217;ve found, bit by bit. <span id="more-276"></span></p>
<h4>Switching Between Displaying Cell Value and Formula</h4>
<p>Today I struggled hard because in Excel 2008 there is no easy way to switch between the value and formula display mode. You&#8217;ll have to go to Excel preferences and change it under the &#8216;View&#8217; tab each time. And if you want to change it back, you&#8217;ll go there again. Very uncomfortable, if you want to switch between formula and value displays quickly.</p>
<p>Using <strong>Pivot tables</strong> is also quite disturbing and it&#8217;s easy to get lost. More about it next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/excel-2008-for-mac-flaws-and-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pivot Table Tip: Color All One Type of Data Items at Once</title>
		<link>http://www.excelrange.com/pivot-table-tip-color-all-one-type-of-data-items/</link>
		<comments>http://www.excelrange.com/pivot-table-tip-color-all-one-type-of-data-items/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 08:12:05 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[cell format]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[Pivot table]]></category>
		<category><![CDATA[time saving]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=266</guid>
		<description><![CDATA[Microsoft Excel&#8217;s styling capabilities have improved over the time. But there are still lackings on some areas. One thing I personally miss is the ability to attach styles to Pivot table items. For example you have in one table the sums of revenues and sums of quantities &#8211; and you wish the revenues to be [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Excel&#8217;s styling capabilities have improved over the time. But there are still lackings on some areas. One thing I personally miss is the ability to attach styles to Pivot table items. For example you have in one table the sums of revenues and sums of quantities &#8211; and you wish the revenues to be formatted differently. Of course, you can manually change the formatting of each revenue cell, but this is not a very modern way to handle it &#8211; considering we use styles for such formatting tasks in MS Office and other programs nowadays. </p>
<p>I have a little tip for those of you who face the same problem &#8211; you can still attach different color to different Pivot table items.<span id="more-266"></span> It is possible to use custom formatting to define the color of the Pivot table data item. This way all data of the same kind will be formatted with the same font color &#8211; resistant to table refreshes, size changes and field arrangements. And most importantly &#8211; you can change the color instantly from one place.</p>
<p>Field format is applied by right-clicking on the field name: Field settings -&gt; Number</p>
<p>Then you should apply &#8216;Custom&#8217; number formatting and define color format as shown on the screenshot below. This makes the text blue:</p>
<p><a href="http://www.excelrange.com/wp-content/uploads/2009/12/Picture-1.png" rel="lightbox[266]"><img class="alignnone size-medium wp-image-270" title="Custom format for a Pivot table item" src="http://www.excelrange.com/wp-content/uploads/2009/12/Picture-1-300x279.png" alt="Custom format for a Pivot table item" width="300" height="279" /></a></p>
<p>Below is a table of milk production data. One data item is made blue to distinguish it from the rest of the table:</p>
<p><a href="http://www.excelrange.com/wp-content/uploads/2009/12/Picture-2.png" rel="lightbox[266]"><img class="alignnone size-medium wp-image-271" title="Pivot table with colored texts" src="http://www.excelrange.com/wp-content/uploads/2009/12/Picture-2-300x228.png" alt="Pivot table with colored texts" width="300" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/pivot-table-tip-color-all-one-type-of-data-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get the Sum of Rounded Numbers &#8220;correct&#8221;?</title>
		<link>http://www.excelrange.com/how-to-get-the-sum-of-rounded-numbers-correct/</link>
		<comments>http://www.excelrange.com/how-to-get-the-sum-of-rounded-numbers-correct/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 07:32:04 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[cell format]]></category>
		<category><![CDATA[formulas]]></category>
		<category><![CDATA[rounding numbers]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=233</guid>
		<description><![CDATA[It&#8217;s quite common that the calculation adds precise numbers which are formatted to be less precise. It might also happen that due to rounding, the formatted result seems mathematically incorrect on screen. 
Example:




Cell value
Cell value formatted with 1 decimal


A
12,75
12,8


B
12,75
12,8


SUM A+B
25,5
25,5



The last red number seems incorrect, because 12,8 + 12,8 = 25,6
Usually this is OK, as [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s quite common that the calculation adds precise numbers which are formatted to be less precise. It might also happen that due to rounding, the formatted result seems mathematically incorrect on screen. <span id="more-233"></span></p>
<p>Example:</p>
<table border="0">
<tbody>
<tr>
<td></td>
<td>Cell value</td>
<td>Cell value formatted with 1 decimal</td>
</tr>
<tr>
<td>A</td>
<td>12,75</td>
<td>12,8</td>
</tr>
<tr>
<td>B</td>
<td>12,75</td>
<td>12,8</td>
</tr>
<tr>
<td>SUM A+B</td>
<td>25,5</td>
<td style="color: #cc0000;"><strong>25,5</strong></td>
</tr>
</tbody>
</table>
<p>The last red number seems incorrect, because 12,8 + 12,8 = 25,6</p>
<p>Usually this is OK, as from the source data point of view, this is mathematically correct.  But on some rare cases you want to add up numbers as they are displayed and you want the result to be 25,6. To let Excel do the math at the displayed precision level go to:</p>
<p>On Excel 2007: <em>Excel Options &gt; Advanced</em>, scroll down to <em>When calculating this workbook<br />
</em></p>
<p>On Excel Mac 2008: <em>Excel -&gt; Preferences -&gt; Calculation</em></p>
<p>And check the field &#8216;<strong>Set precision as displayed</strong>&#8216;</p>
<p>This should be used with caution as Excel changes the numbers in cells permanently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/how-to-get-the-sum-of-rounded-numbers-correct/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Excel Chart Inside the Cell</title>
		<link>http://www.excelrange.com/small-excel-chart-inside-the-cell/</link>
		<comments>http://www.excelrange.com/small-excel-chart-inside-the-cell/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 11:30:21 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[charting]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[formulas]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=216</guid>
		<description><![CDATA[Here is one tip for improving the readability of larger data tables &#8211; use in-cell graphics. This is based on using ordinary characters as graphic elements. It is possible to repeat the characters using Excel REPT() function. 
Below is a statistical table from Eurostat that is tuned with in-cell graphics.
Tip 1: You can apply calculations [...]]]></description>
			<content:encoded><![CDATA[<p>Here is one tip for improving the readability of larger data tables &#8211; use in-cell graphics. This is based on using ordinary characters as graphic elements. It is possible to repeat the characters using Excel REPT() function. <span id="more-216"></span></p>
<p>Below is a statistical table from Eurostat that is tuned with in-cell graphics.</p>
<p><strong>Tip 1</strong>: You can apply calculations to second parameter to fit the result into desired space (in this case, the numerical value is divided by 10)<strong> </strong></p>
<p><strong>Tip 2:</strong> Try experimenting with different characters for the repetition, like &#8220;-&#8221;, &#8220;o&#8221; as the first parameter for the function. You can also apply some other character at the end of the formula with &#8220;&amp;&#8221;+[end character]</p>
<div><strong>Tip 3:</strong> Changing fonts and font sizes of the cell can result in creative outcomes</div>
<div></div>
<div id="attachment_218" class="wp-caption alignnone" style="width: 258px"><a href="http://www.excelrange.com/wp-content/uploads/2009/12/in-cell-1.png" rel="lightbox[216]"><img class="size-medium wp-image-218" title="Excel in-cell graphics for improved readability" src="http://www.excelrange.com/wp-content/uploads/2009/12/in-cell-1-248x300.png" alt="Excel in-cell graphics for improved readability" width="248" height="300" /></a><p class="wp-caption-text">Excel in-cell graphics for improved readability</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/small-excel-chart-inside-the-cell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pivot tables created in Excel 2007 will not work in Excel 2003</title>
		<link>http://www.excelrange.com/pivot-tables-created-in-excel-2007-will-not-work-in-excel-2003/</link>
		<comments>http://www.excelrange.com/pivot-tables-created-in-excel-2007-will-not-work-in-excel-2003/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:03:49 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Excel 2003]]></category>
		<category><![CDATA[Excel 2007]]></category>
		<category><![CDATA[Pivot table]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=206</guid>
		<description><![CDATA[Excel has a very uncomfortable bug &#8211; if you create a Pivot table in Excel 2007, then it will be &#8220;readonly&#8221; in earlier versions. I.e you can&#8217;t apply any new filters or re-arrange data fields. The only picture you see is like a static snapshot of the moment when it was last saved in Excel [...]]]></description>
			<content:encoded><![CDATA[<p>Excel has a very uncomfortable bug &#8211; if you create a Pivot table in Excel 2007, then it will be &#8220;readonly&#8221; in earlier versions. I.e you can&#8217;t apply any new filters or re-arrange data fields. The only picture you see is like a static snapshot of the moment when it was last saved in Excel 2007. Even saving in 2003 compatibility mode will not help. Somehow the creation algorithm of a Pivot table is different in Excel 2007.</p>
<p>What to do when you need to have a Pivot table which can be used for Excel 2003 and 2007 users at the same time? <span id="more-206"></span> The only solution I know is to first create a Pivot table in Excel 2003. After that you can edit the Pivot in 2007, save modifications and it still works in both versions of Excel. So it is useful to have an older version of Excel available besides 2007.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/pivot-tables-created-in-excel-2007-will-not-work-in-excel-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subtotal function in Excel Formulas Helps to Stay Organized</title>
		<link>http://www.excelrange.com/subtotal-function-in-excel-formulas/</link>
		<comments>http://www.excelrange.com/subtotal-function-in-excel-formulas/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 11:23:37 +0000</pubDate>
		<dc:creator>Märt Parker</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[formulas]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://www.excelrange.com/?p=185</guid>
		<description><![CDATA[Large Excel spreadsheets are very vulnerable to mistakes in formulas. To reduce the probability of errors, good organization and structuring of data is a must.
Subtotal() function is one of the features that can help you to organize the spreadsheets better and prevent messy calculation logics. Novice Excel users often use SUM() function in places where [...]]]></description>
			<content:encoded><![CDATA[<p>Large Excel spreadsheets are very vulnerable to mistakes in formulas. To reduce the probability of errors, good organization and structuring of data is a must.</p>
<p>Subtotal() function is one of the features that can help you to organize the spreadsheets better and prevent messy calculation logics. Novice Excel users often use SUM() function in places where SUBTOTAL() would be more appropriate. For large tables this practice can produce unmanagable files and hard to find calculation errors. <span id="more-185"></span></p>
<p>SUBTOTAL is meant to calculate subtotals or summary rows in the middle of the data table. <strong>The important distinction between Subtotal and Sum is that Subtotal does not sum cells which contain another use of Subtotal.</strong> This prevents multiple sums.</p>
<table style="width: 382px; height: 355px; background-color: #ffff99;" border="0">
<tbody>
<tr>
<td>Bad practice</td>
<td></td>
<td>Better solution</td>
</tr>
<tr>
<td valign="top"><a href="http://www.excelrange.com/wp-content/uploads/2009/12/subtotal-bad.png" rel="lightbox[185]"><img class="alignnone size-medium wp-image-194" style="vertical-align: top;" src="http://www.excelrange.com/wp-content/uploads/2009/12/subtotal-bad-150x300.png" alt="Bad practice for subtotals" width="150" height="300" /></a></td>
<td></td>
<td valign="top"><a href="http://www.excelrange.com/wp-content/uploads/2009/12/subtotal.png" rel="lightbox[185]"><img class="alignnone size-medium wp-image-190" style="vertical-align: top;" title="Subtotal of categories" src="http://www.excelrange.com/wp-content/uploads/2009/12/subtotal-200x300.png" alt="Subtotal of categories" width="200" height="300" /></a></p>
<p>*Subtotals of categories are calculated with SUBTOTAL as well</td>
</tr>
</tbody>
</table>
<p>Using Subtotal instead of Sum() in formulas has the advantage, if you need to calculate over large number of subtotals and the table is long.</p>
<p>Be careful &#8211; if somebody else modifies the table and accidentally adds a row with SUM() function into the range that you sum with subtotal, then the result will be wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelrange.com/subtotal-function-in-excel-formulas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

