<?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>Daily Dose of Excel</title>
	<atom:link href="http://www.dailydoseofexcel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Tue, 15 May 2012 23:43:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Create a header cell with text separated by a diagonal line</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/05/15/create-a-header-cell-with-text-separated-by-a-diagonal-line/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/05/15/create-a-header-cell-with-text-separated-by-a-diagonal-line/#comments</comments>
		<pubDate>Tue, 15 May 2012 23:41:13 +0000</pubDate>
		<dc:creator>Tushar Mehta</dc:creator>
				<category><![CDATA[Excel Basic]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7045</guid>
		<description><![CDATA[In creating a table header that explains what the row and column values represent, a common approach is to use a cell with text separated by a diagonal line. This, first for me, video tutorial explains how. For those who prefer a text explanation: Format the cell &#8220;border&#8221; to add a diagonal from the left-top [...]]]></description>
			<content:encoded><![CDATA[<p>In creating a table header that explains what the row and column values represent, a common approach is to use a cell with text separated by a diagonal line.  This, first for me, video tutorial explains how.</p>
<p><img src="http://www.dailydoseofexcel.com/wp-content/uploads/2012/05/Capture.png" alt="" title="Capture" width="398" height="213" class="aligncenter size-full wp-image-7046" /></p>
<p>For those who prefer a text explanation:</p>
<p>Format the cell &#8220;border&#8221; to add a diagonal from the left-top to the right-bottom (it&#8217;s one of the line choices in the Format Cells dialog box | Borders tab).</p>
<p>Then, type several spaces the literal Hours ALT+ENTER to create a newline in the text and then the literal Days.</p>
<p>Adjust the number of spaces before the literal Hours to get the desired effect. </p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/5TYBLg8bfA8" frameborder="0" allowfullscreen></iframe></p>
<p>An alternative, which is simple albeit crude, is to type Days space \ space Hours. {grin}</p>
<p><a href="http://www.tushar-mehta.com">Tushar Mehta</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/05/15/create-a-header-cell-with-text-separated-by-a-diagonal-line/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Copy Chart as a Picture</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/05/05/copy-chart-as-a-picture/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/05/05/copy-chart-as-a-picture/#comments</comments>
		<pubDate>Sat, 05 May 2012 22:55:43 +0000</pubDate>
		<dc:creator>Rob van Gelder</dc:creator>
				<category><![CDATA[Charting]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[VBA Code Library]]></category>
		<category><![CDATA[Windows API]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7005</guid>
		<description><![CDATA[I needed to copy a chart to a picture, but I wanted it to be an enhanced metafile (EMF) which is kind of like a vector graphic picture format. EMF graphics scale well when the page resizes. A user would select the chart, run the macro and a dialog would ask them where to save [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to copy a chart to a picture, but I wanted it to be an enhanced metafile (EMF) which is kind of like a vector graphic picture format. EMF graphics scale well when the page resizes.</p>
<p>A user would select the chart, run the macro and a dialog would ask them where to save the picture to &#8211; pretty simple, but handy!<br />
It uses the clipboard to do the conversion.</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> OpenClipboard Lib <span style="color: #800000;">&quot;user32&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByVal</span> hwnd <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> CloseClipboard Lib <span style="color: #800000;">&quot;user32&quot;</span> () <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> GetClipboardData Lib <span style="color: #800000;">&quot;user32&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByVal</span> wFormat <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> EmptyClipboard Lib <span style="color: #800000;">&quot;user32&quot;</span> () <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> CopyEnhMetaFileA Lib <span style="color: #800000;">&quot;gdi32&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByVal</span> hENHSrc <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>, <span style="color: #151B8D; font-weight: bold;">ByVal</span> lpszFile <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #151B8D; font-weight: bold;">Declare</span> <span style="color: #E56717; font-weight: bold;">Function</span> DeleteEnhMetaFile Lib <span style="color: #800000;">&quot;gdi32&quot;</span> (<span style="color: #151B8D; font-weight: bold;">ByVal</span> hemf <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
&nbsp;<br />
Const CF_ENHMETAFILE <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span> = 14<br />
Const cInitialFilename = <span style="color: #800000;">&quot;Picture1.emf&quot;</span><br />
Const cFileFilter = <span style="color: #800000;">&quot;Enhanced Windows Metafile (*.emf), *.emf&quot;</span><br />
&nbsp;<br />
<span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Sub</span> SaveAsEMF()<br />
&nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">Dim</span> var <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Variant</span>, lng <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
&nbsp;<br />
&nbsp; &nbsp; var = Application.GetSaveAsFilename(cInitialFilename, cFileFilter)<br />
&nbsp; &nbsp; <span style="color: #8D38C9; font-weight: bold;">If</span> VarType(var) &lt;&gt; vbBoolean <span style="color: #8D38C9; font-weight: bold;">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">On</span> <span style="color: #151B8D; font-weight: bold;">Error</span> <span style="color: #151B8D; font-weight: bold;">Resume</span> <span style="color: #8D38C9; font-weight: bold;">Next</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; Selection.Copy<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; OpenClipboard 0<br />
&nbsp; &nbsp; &nbsp; &nbsp; lng = GetClipboardData(CF_ENHMETAFILE)<br />
&nbsp; &nbsp; &nbsp; &nbsp; lng = CopyEnhMetaFileA(lng, var)<br />
&nbsp; &nbsp; &nbsp; &nbsp; EmptyClipboard<br />
&nbsp; &nbsp; &nbsp; &nbsp; CloseClipboard<br />
&nbsp; &nbsp; &nbsp; &nbsp; DeleteEnhMetaFile lng<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">On</span> <span style="color: #151B8D; font-weight: bold;">Error</span> <span style="color: #8D38C9; font-weight: bold;">GoTo</span> 0<br />
&nbsp; &nbsp; <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span><br />
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/05/05/copy-chart-as-a-picture/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Working With Circular references in Excel</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/05/02/working-with-circular-references-in-excel/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/05/02/working-with-circular-references-in-excel/#comments</comments>
		<pubDate>Wed, 02 May 2012 15:24:34 +0000</pubDate>
		<dc:creator>jkpieterse</dc:creator>
				<category><![CDATA[Excel Advanced]]></category>
		<category><![CDATA[Formulas]]></category>
		<category><![CDATA[MVP]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7033</guid>
		<description><![CDATA[Have you ever experienced the dreaded &#8220;Circular reference warning&#8221; popping up when you opened an Excel file or entered a formula? Excel detects a circular reference when a chain of calculations visits the same cell more than once. Many users get (very) confused by this message and have no idea what it is about. I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever experienced the dreaded &#8220;Circular reference warning&#8221; popping up when you opened an Excel file or entered a formula?</p>
<p>Excel detects a circular reference when a chain of calculations visits the same cell more than once. Many users get (very) confused by this message and have no idea what it is about. I&#8217;ll tried to demystify that message in a new article:</p>
<h3><a title="Working with Circular references in Excel" href="http://www.jkp-ads.com/Articles/circularreferences00.asp">Working with Circular references in Excel</a></h3>
<p>The article contains these chapters:</p>
<h4><a href="http://www.jkp-ads.com/Articles/circularreferences01.asp">Types of circular references</a></h4>
<p>Simplistically speaking there are only a few types of circular references to discern:</p>
<p>Deliberate circular references</p>
<p>Accidental circular references</p>
<h4><a href="http://www.jkp-ads.com/Articles/circularreferences02.asp">Calculation settings</a></h4>
<p>If you want to work with circular references, the calculation settings of Excel are very important. This page gives you some pointers!</p>
<h4><a href="http://www.jkp-ads.com/Articles/circularreferences03.asp">Properly setting up circular references</a></h4>
<p>Whereas I am no fan of using circular references, they can be beneficial to your model and really solve the problem you are trying to solve. So here is some advice on how to properly work with them.</p>
<h4><a href="http://www.jkp-ads.com/Articles/circularreferences04.asp">Reasons why circular references may not be detected</a></h4>
<p>This page shows a couple of reasons why circles are not detected.</p>
<p>Enjoy!</p>
<p>Regards,</p>
<p>Jan Karel Pieterse</p>
<p><a title="www.jkp-ads.com" href="http://www.jkp-ads.com">www.jkp-ads.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/05/02/working-with-circular-references-in-excel/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Charts and Things</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/05/02/charts-and-things/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/05/02/charts-and-things/#comments</comments>
		<pubDate>Wed, 02 May 2012 12:38:56 +0000</pubDate>
		<dc:creator>Dick Kusleika</dc:creator>
				<category><![CDATA[Charting]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7027</guid>
		<description><![CDATA[A list of people who will enjoy chartsnthings, &#8220;A blog of data sketches from the New York Times Graphics Department. Maintained by @KevinQ.&#8221; People who say &#8220;data visualization&#8221; instead of &#8220;chart&#8221; People who can find fault in any chart that they didn&#8217;t make People who get lost in the minutia of charting psychology Me Maybe [...]]]></description>
			<content:encoded><![CDATA[<p>A list of people who will enjoy <a href="http://chartsnthings.tumblr.com/">chartsnthings</a>, &#8220;A blog of data sketches from the New York Times Graphics Department. Maintained by @KevinQ.&#8221;</p>
<ul>
<li>People who say &#8220;data visualization&#8221; instead of &#8220;chart&#8221;</li>
<li>People who can find fault in any chart that they didn&#8217;t make</li>
<li>People who get lost in the minutia of charting psychology</li>
<li>Me</li>
<li>Maybe you</li>
</ul>
<p><img src="http://www.dailydoseofexcel.com/blogpix/chartsnthings.GIF" height="682" width="821" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/05/02/charts-and-things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick VBA Tip: Parentheses</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/05/01/quick-vba-tip-parentheses/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/05/01/quick-vba-tip-parentheses/#comments</comments>
		<pubDate>Tue, 01 May 2012 19:01:52 +0000</pubDate>
		<dc:creator>Dick Kusleika</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7024</guid>
		<description><![CDATA[I&#8217;d like to make an assertion. If you have an open parenthesis preceded by a space, you should remove the parentheses. Here&#8217;s an example: Sub test() &#160; &#160; Dim myCollection As Collection &#160; &#160; Dim myObject As Object &#160; &#160; &#160; &#160; myCollection.Add (myObject) &#160; &#160; myCollection.Add myObject &#160; &#160; End Sub When you put [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to make an assertion.  If you have an open parenthesis preceded by a space, you should remove the parentheses.  Here&#8217;s an example:</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #E56717; font-weight: bold;">Sub</span> test()<br />
<br />
&nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">Dim</span> myCollection <span style="color: #151B8D; font-weight: bold;">As</span> Collection<br />
&nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">Dim</span> myObject <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Object</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; myCollection.Add (myObject)<br />
&nbsp; &nbsp; myCollection.Add myObject<br />
&nbsp; &nbsp; <br />
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></div></div>
<p>When you put parentheses around an object, VBA evaluates that object and, absent a property, returns the default property.  The first Add might error or might not work as expected.  Here&#8217;s another example:</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #E56717; font-weight: bold;">Sub</span> test2()<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">Dim</span> dValue <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Double</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; dValue = 1.1<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; Debug.<span style="color: #151B8D; font-weight: bold;">Print</span> (dValue)<br />
&nbsp; &nbsp; Debug.<span style="color: #151B8D; font-weight: bold;">Print</span> dValue<br />
&nbsp; &nbsp; <br />
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></div></div>
<p>In this case the parentheses don&#8217;t do any harm, but they&#8217;re still unnecessary.  And finally:</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #E56717; font-weight: bold;">Sub</span> test3()<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #151B8D; font-weight: bold;">Dim</span> lValue <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; lValue = CLng(1.1)<br />
&nbsp; &nbsp; <br />
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></div></div>
<p>In this case there is no space before the open parenthesis, so it&#8217;s not just preferred, but necessary.</p>
<p>Can you think of a case where an open parenthesis preceded by a space is required or preferred?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/05/01/quick-vba-tip-parentheses/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Excel Power Analyst Bootcamp Almost Here</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/04/30/excel-power-analyst-bootcamp-almost-here/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/04/30/excel-power-analyst-bootcamp-almost-here/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 19:34:37 +0000</pubDate>
		<dc:creator>Dick Kusleika</dc:creator>
				<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7021</guid>
		<description><![CDATA[var so = new SWFObject('https://www.regonline.com/documents/web/widgets/widget_001.swf', 'widget', '300', '115', '8', '');so.addParam('wmode', 'transparent');so.addVariable('url', 'http://www.regonline.com/eventinfo.asp?eventid=1064283');so.addVariable('date', '5/22/2012');so.addVariable('title', 'Excel Power Analyst Bootcamp Omaha');so.addVariable('location', 'Omaha, Nebraska');so.addVariable('cMain', '#336699');so.addVariable('cSecond', '#ff9900');so.write('flashContent22129'); Excel Power Analyst Bootcamp Omaha It&#8217;s almost here. Sign-up today to get the early-bird discount. Seats are limited.]]></description>
			<content:encoded><![CDATA[<p><!--BEGIN REGONLINE LINK CODE!--></p>
<table class='pbrROL'>
<tr>
<td>
<div class='pbrROL-basic' style='position:relative; height:118px;'><a href='http://www.regonline.com/eventinfo.asp?eventid=1064283'  border='0'>
<div id='flashContent22129'><img src='https://www.activestatic.net/images/Buttons/flashWidget-noscript.jpg' border='0'/></div>
<p></a><script type='text/javascript' src='https://www.regonline.com/documents/web/js/swfobject.js'></script><script type='text/javascript'>var so = new SWFObject('https://www.regonline.com/documents/web/widgets/widget_001.swf', 'widget', '300', '115', '8', '');so.addParam('wmode', 'transparent');so.addVariable('url', 'http://www.regonline.com/eventinfo.asp?eventid=1064283');so.addVariable('date', '5/22/2012');so.addVariable('title', 'Excel Power Analyst Bootcamp Omaha');so.addVariable('location', 'Omaha, Nebraska');so.addVariable('cMain', '#336699');so.addVariable('cSecond', '#ff9900');so.write('flashContent22129');</script>
<div class='tt' style='position:absolute;bottom:2px; right:40px;'></div>
</div>
</td>
</tr>
</table>
<link rel="stylesheet" href="https://www.regonline.com/styles/ClientButton.css" type="text/css">
<p><!--END REGONLINE LINK CODE!--></p>
<p><a href="http://www.regonline.com/builder/site/?eventid=1064283">Excel Power Analyst Bootcamp Omaha</a></p>
<p>It&#8217;s almost here.  Sign-up today to get the early-bird discount.  Seats are limited.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/04/30/excel-power-analyst-bootcamp-almost-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Signature in Outlook mail created with VBA</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/04/23/signature-in-outlook-mail-created-with-vba/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/04/23/signature-in-outlook-mail-created-with-vba/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 19:27:01 +0000</pubDate>
		<dc:creator>Ron de Bruin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=7015</guid>
		<description><![CDATA[Hi all I think this is the fix if you want to create a Outlook mail with a signature with or without a picture in it. http://www.rondebruin.nl/mail/folder3/signature.htm I hope it is working OK for everybody, if not mail me or post it here. Other suggestions are also most welcome Have a great day]]></description>
			<content:encoded><![CDATA[<p>Hi all</p>
<p>I think this is the fix if you want to create a Outlook mail with a signature with or without a picture in it.</p>
<p><a href="http://www.rondebruin.nl/mail/folder3/signature.htm">http://www.rondebruin.nl/mail/folder3/signature.htm</a></p>
<p>I hope it is working OK for everybody, if not mail me or post it here.</p>
<p>Other suggestions are also most welcome</p>
<p>Have a great day</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/04/23/signature-in-outlook-mail-created-with-vba/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Align Primary and Secondary axes</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/04/21/align-primary-and-secondary-axes/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/04/21/align-primary-and-secondary-axes/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 00:03:05 +0000</pubDate>
		<dc:creator>Tushar Mehta</dc:creator>
				<category><![CDATA[Charting]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Excel 14]]></category>
		<category><![CDATA[Excel Basic]]></category>
		<category><![CDATA[Excel12]]></category>
		<category><![CDATA[Chart]]></category>
		<category><![CDATA[Excel 2007]]></category>
		<category><![CDATA[Excel 2010]]></category>
		<category><![CDATA[Visual Display]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=6999</guid>
		<description><![CDATA[There are instances when there are data series plotted on both the primary and secondary axes. For example, suppose we want to plot the two series A and B in Figure 1, with the elements in column B as the x-axis values. The A series will be a column cart on the primary axis and [...]]]></description>
			<content:encoded><![CDATA[<p>There are instances when there are data series plotted on both the primary and secondary axes.  For example, suppose we want to plot the two series A and B in Figure 1, with the elements in column B as the x-axis values.  The A series will be a column cart on the primary axis and the B series will be a line chart on the secondary axis.<br />
<img src="http://www.dailydoseofexcel.com/wp-content/uploads/2012/04/image001.jpg" alt="" title="image001" width="355" height="122" class="aligncenter size-full wp-image-7000" /><img src="http://www.dailydoseofexcel.com/wp-content/uploads/2012/04/image007.gif" alt="" title="image007" width="602" height="362" class="aligncenter size-full wp-image-7001" /></p>
<p style="clear:both">For a version in a page by itself (i.e., not in a scrollable iframe as below) visit <a href="http://www.tushar-mehta.com/publish_train/data_visualization/06%20Visual%20Effects.shtml">http://www.tushar-mehta.com/publish_train/data_visualization/06%20Visual%20Effects.shtml</a></p>
<p><iframe style="width: 100%; height: 600px;" src="http://www.tushar-mehta.com/publish_train/data_visualization/06%20Visual%20Effects.htm"></iframe></p>
<p><a href="http://www.tushar-mehta.com">Tushar Mehta</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/04/21/align-primary-and-secondary-axes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incrementing Dates in Excel Cells</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/04/20/incrementing-dates-in-excel-cells/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/04/20/incrementing-dates-in-excel-cells/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 19:43:06 +0000</pubDate>
		<dc:creator>Dick Kusleika</dc:creator>
				<category><![CDATA[For Normal People]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=6991</guid>
		<description><![CDATA[I complete a timesheet every 14 days. I got tired of doing math in my head, so around August 13, 2010 I put a stop to it. Here&#8217;s what the date cell on my timesheet looks like now. &#160; F2 to edit the cell, &#8220;+14&#8243; and enter. It&#8217;s nowhere near too long as formulas go, [...]]]></description>
			<content:encoded><![CDATA[<p>I complete a timesheet every 14 days.  I got tired of doing math in my head, so around August 13, 2010 I put a stop to it.  Here&#8217;s what the date cell on my timesheet looks like now.</p>
<p><img src="http://www.dailydoseofexcel.com/blogpix/timesheetdate1.GIF" height="159" width="1095" alt="" /></p>
<p>&nbsp;</p>
<p>F2 to edit the cell, &#8220;+14&#8243; and enter.  It&#8217;s nowhere near too long as formulas go, but it&#8217;s starting to bother me.  Time to consolidate.  Select the 14s.</p>
<p>&nbsp;</p>
<p><img src="http://www.dailydoseofexcel.com/blogpix/timesheetdate2.GIF" height="214" width="1126" alt="" /></p>
<p>&nbsp;</p>
<p>Press Control+= (F9 works too, but my muscle memory is control and equal sign)</p>
<p>&nbsp;</p>
<p><img src="http://www.dailydoseofexcel.com/blogpix/timesheetdate3.GIF" height="178" width="512" alt="" /></p>
<p>&nbsp;</p>
<p>Enter.  Next pay period, my timesheet will look like this</p>
<p>&nbsp;</p>
<p><img src="http://www.dailydoseofexcel.com/blogpix/timesheetdate4.GIF" height="172" width="418" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/04/20/incrementing-dates-in-excel-cells/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>SQLite and Dropbox</title>
		<link>http://www.dailydoseofexcel.com/archives/2012/04/19/sqlite-and-dropbox/</link>
		<comments>http://www.dailydoseofexcel.com/archives/2012/04/19/sqlite-and-dropbox/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 20:53:16 +0000</pubDate>
		<dc:creator>Dick Kusleika</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=6988</guid>
		<description><![CDATA[I want to put a SQLite3 file in a shared Dropbox folder and run an Excel app with that as the backend database. I&#8217;m using the SQLite ODBC Driver and some VBA to drive a simple userform. My theory is that the file access will be so short and infrequent that I won&#8217;t have any [...]]]></description>
			<content:encoded><![CDATA[<p>I want to put a SQLite3 file in a shared Dropbox folder and run an Excel app with that as the backend database.  I&#8217;m using the <a href="http://www.ch-werner.de/sqliteodbc/">SQLite ODBC Driver</a> and some VBA to drive a simple userform.</p>
<p>My theory is that the file access will be so short and infrequent that I won&#8217;t have any file locking problems.</p>
<p>Who wants to test it out?  You need a Dropbox account, the aforementioned driver, and a copy of the workbook below.  Oh, and Excel if you didn&#8217;t already figure that one out.</p>
<p>Install the driver.  Leave a comment or send an email to dkusleika@gmail.com with your Dropbox info and I&#8217;ll share a folder with you.  Then open the workbook and start adding and modifying records in the userform.  Ideally, I&#8217;d like to coordinate a five minute period where a few of us agree to hammer on it and try to break it.</p>
<p><a href="http://www.dailydoseofexcel.com/excel/SqliteContacts.zip"><img src="http://www.dailydoseofexcel.com/blogpix/DownICO.gif" height="32" width="32" alt="" class="imgnomargin" /></a>You can <a href="http://www.dailydoseofexcel.com/excel/SqliteContacts.zip">download SqliteContacts.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailydoseofexcel.com/archives/2012/04/19/sqlite-and-dropbox/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
	</channel>
</rss>

