<?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>Jon Lorenzini&#039;s E-Portfolio</title>
	<atom:link href="http://jonlorenzini.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonlorenzini.com</link>
	<description>Me.</description>
	<lastBuildDate>Tue, 19 Feb 2013 20:12:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Excel Formula For Week Ending/Bi Weekly</title>
		<link>http://jonlorenzini.com/2013/excel-formula-for-week-ending/</link>
		<comments>http://jonlorenzini.com/2013/excel-formula-for-week-ending/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 19:41:29 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=334</guid>
		<description><![CDATA[Quick excel formula I wanted to share with you guys: Lets say your date values were in column C2. To find the correct week ending/starting date, use the following formula in A2: Week Ending (Monday) =C2+7-WEEKDAY(C2) (NEED TO FIX) Week Starting (Monday) =C3-WEEKDAY(C3,3) You may need to add an additional value after the C2 depending [...]]]></description>
			<content:encoded><![CDATA[<h2>Quick excel formula I wanted to share with you guys:</h2>
<p>Lets say your date values were in column C2. To find the correct week ending/starting date, use the following formula in A2:</p>
<p><strong>Week Ending (Monday)</strong></p>
<p>=C2+7-WEEKDAY(C2) (NEED TO FIX)</p>
<p><strong>Week Starting (Monday)</strong></p>
<p>=C3-WEEKDAY(C3,3)</p>
<p>You may need to add an additional value after the C2 depending on the day of the week you are looking to return.</p>
<p>&nbsp;</p>
<p>Assuming your Week Ending formula was in A2, you would build the following formula off of the previous one.</p>
<p>Bi-Weekly</p>
<p>=IF(ISEVEN(A2),A2,A2+7)</p>
<p style="padding-left: 30px;"> Column A -Week Ending        Column B &#8211; BiWeekly                         Column C &#8211; Raw Data (Date)</p>
<p style="padding-left: 30px;"> =C2+7-WEEKDAY(C2)        =IF(ISEVEN(A2),A2,A2+7)             Date Value</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2013/excel-formula-for-week-ending/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Statistical Significance in Excel for A/B Ad Copy or Landing Page Tests</title>
		<link>http://jonlorenzini.com/2013/statistical-significance-for-ad-copy-or-lp-test/</link>
		<comments>http://jonlorenzini.com/2013/statistical-significance-for-ad-copy-or-lp-test/#comments</comments>
		<pubDate>Mon, 28 Jan 2013 22:00:53 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Excel VBA]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=318</guid>
		<description><![CDATA[Below returns the P-Value. Since tests are two tailed, a .95 is equivalent to .05 (it just depends on which order you enter the data). To use this formula, visit How to Install VBA Macros in Excel. After you have installed it, go back to your worksheet and type =SignificantTest(A1,A2,B1,B2) where: A1 = Impressions for [...]]]></description>
			<content:encoded><![CDATA[<p>Below returns the P-Value. Since tests are two tailed, a .95 is equivalent to .05 (it just depends on which order you enter the data). To use this formula, visit <a title="VBA: How to Install VBA Macros in Excel" href="http://jonlorenzini.com/2011/how-to-install-vba-macros-in-excel/">How to Install VBA Macros in Excel</a>.</p>
<p>After you have installed it, go back to your worksheet and type =SignificantTest(A1,A2,B1,B2) where:</p>
<p style="text-align: center;">A1 = Impressions for Ad 1</p>
<p style="text-align: center;">A2 = Clicks for Ad 1</p>
<p style="text-align: center;">B1  = Impressions for Ad 2</p>
<p style="text-align: center;">B2 = Clicks for Ad 2</p>
<p>If you are doing a landing page test, switch the impressions with clicks and the clicks for conversions.</p>
<p>Thanks to <a title="Serge Bondar" href="http://www.pointit.com/author/sergeb/">Serge Bondar</a> at pointit.com for the formulas to create this.</p>
<p>&nbsp;</p>
<h3>Copy Below:</h3>
<p><pre><pre>Public Function SignificantTest(Imp1, Clicks1, Imp2, Clicks2 As Double)

Dim CTR1, CTR2, SD1, SD2, ZScore, PValue As Double

CTR1 = Clicks1 / Imp1
CTR2 = Clicks2 / Imp2

SD1 = Sqr(CTR1 * (1 - CTR1) / Imp1)
SD2 = Sqr(CTR2 * (1 - CTR2) / Imp2)

ZScore = (CTR1 - CTR2) / Sqr(SD1 ^ 2 + SD2 ^ 2)

PValue = Application.NormDist(ZScore, 0, 1, True)

SignificantTest = PValue

End Function</pre></pre><br />
&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2013/statistical-significance-for-ad-copy-or-lp-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Formula Generator For Delineated Text</title>
		<link>http://jonlorenzini.com/2012/excel-formula-generator-for-delineated-text/</link>
		<comments>http://jonlorenzini.com/2012/excel-formula-generator-for-delineated-text/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 21:40:39 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=304</guid>
		<description><![CDATA[The PHP version will be coming soon (will be easier to copy and paste over than the current Excel doc). &#160; - Jon]]></description>
			<content:encoded><![CDATA[<p>The PHP version will be coming soon (will be easier to copy and paste over than the current Excel doc).</p>
<p>&nbsp;</p>
<div id="attachment_307" class="wp-caption aligncenter" style="width: 493px"><a href="http://jonlorenzini.com/wp-content/uploads/2012/08/ryan.png"><img class=" wp-image-307 " title="ryandease" src="http://jonlorenzini.com/wp-content/uploads/2012/08/ryan.png" alt="ryan dease" width="483" height="323" /></a><p class="wp-caption-text">Ryan Dease owes me a beer</p></div>
<p>- Jon</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/excel-formula-generator-for-delineated-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automate PowerPoint From Excel</title>
		<link>http://jonlorenzini.com/2012/automate-powerpoint-from-excel/</link>
		<comments>http://jonlorenzini.com/2012/automate-powerpoint-from-excel/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 16:01:25 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=291</guid>
		<description><![CDATA[Coming Soon. - Screencast of how to use will be here - - Written directions of how to use will be here - Enable macros: trust center &#62; trust center settings &#62; macro settings &#62;enable all macros Include references Hit alt+f11  tools &#62; references &#62; check off microsoft powerpoint 14.0 object library and microsoft outlook 14 object [...]]]></description>
			<content:encoded><![CDATA[<p>Coming Soon.</p>
<p>- Screencast of how to use will be here -</p>
<p>- Written directions of how to use will be here -</p>
<p>Enable macros:</p>
<p>trust center &gt; trust center settings &gt; macro settings &gt;enable all macros</p>
<p>Include references</p>
<p>Hit alt+f11  tools &gt; references &gt; check off microsoft powerpoint 14.0 object library and microsoft outlook 14 object library, hit ok and x out back to the excel doc</p>
<p>&nbsp;</p>
<p>- Template file will be here -</p>
<p>&nbsp;</p>
<h6 style="text-align: center;"><a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" alt="Creative Commons License" /></a><br />
<span>PowerPoint Automator</span> by <a href="jonlorenzini.com" rel="cc:attributionURL">Jonathan Lorenzini</a> is licensed under a <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.</h6>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/automate-powerpoint-from-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon: Excel VBA Framework for PowerPoint!</title>
		<link>http://jonlorenzini.com/2012/coming-soon-excel-vba-framework-for-powerpoint/</link>
		<comments>http://jonlorenzini.com/2012/coming-soon-excel-vba-framework-for-powerpoint/#comments</comments>
		<pubDate>Thu, 14 Jun 2012 19:09:07 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=203</guid>
		<description><![CDATA[Working on a framework to allow powerpoints to be created dynamically from excel using very little programming. An example of the functions would be: CopyRangePasteBitmap(&#8220;Named Range&#8221;, Slide#, Object On Slide#, left location, top location, width, height) with defaults to be inherited from an overall controller file. &#160; More coming soon! &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Working on a framework to allow powerpoints to be created dynamically from excel using very little programming.</p>
<p>An example of the functions would be:</p>
<p>CopyRangePasteBitmap(&#8220;Named Range&#8221;, Slide#, Object On Slide#, left location, top location, width, height)</p>
<p>with defaults to be inherited from an overall controller file.</p>
<p>&nbsp;</p>
<p>More coming soon!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/coming-soon-excel-vba-framework-for-powerpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Mediaplex Export Sheet to Columns Format</title>
		<link>http://jonlorenzini.com/2012/mediaplex-export-sheet-to-columns-format/</link>
		<comments>http://jonlorenzini.com/2012/mediaplex-export-sheet-to-columns-format/#comments</comments>
		<pubDate>Fri, 04 May 2012 21:50:19 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=182</guid>
		<description><![CDATA[This excel macro automatically converts Mediaplex tags from the list that exports from Mediaplex into an excel-friendly multi-column list. Simply drop your export into column A, install the macro below and run. The &#8220;Final Sheet&#8221; tab that will break the Mediaplex tags into column by placement, tag type, and the tag itself. This project came about [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jonlorenzini.com/wp-content/uploads/2011/11/vbacodeimage1.png"><img class="alignnone size-full wp-image-5" title="ExcelMacroImage" src="http://jonlorenzini.com/wp-content/uploads/2011/11/vbacodeimage1.png" alt="Excel Macro Code" width="435" height="288" /></a></p>
<p>This excel macro automatically converts Mediaplex tags from the list that exports from Mediaplex into an excel-friendly multi-column list.</p>
<p>Simply drop your export into column A, install the macro below and run.</p>
<p>The &#8220;Final Sheet&#8221; tab that will break the Mediaplex tags into column by placement, tag type, and the tag itself. This project came about because <a title="Linked In" href="http://www.linkedin.com/in/timconley" target="_blank">Tim Conley</a> sought a more efficient way to sort and manipulate Mediaplex tags and the ad server does not offer a way to export tags in Excel.</p>
<p>If you need to know how to implement this code please refer to my post on <a title="How to Install VBA Macros in Excel" href="http://jonlorenzini.com/2011/how-to-install-vba-macros-in-excel/">How To Install VBA Macros</a>.</p>
<p>For some crazy reason the comment out &#8220;&lt;!&#8211;&#8221; in the code below is removing half of the code/causing issues. Open the following .txt and use that code instead. If you know a solution, please leave a comment.</p>
<p>&nbsp;</p>
<p><center><a href="http://jonlorenzini.com/wp-content/uploads/2012/05/Mediaplex-Placement-Macro.txt">Mediaplex Placement Macro</a></center><br />
If this code has helped you, or you have additional modifications please leave a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/mediaplex-export-sheet-to-columns-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert AdWords Keywords w/ Quotes and Brackets to Keywords with Match Type</title>
		<link>http://jonlorenzini.com/2012/convert-adwords-keywords-w-quotes-and-brackets-to-keywords-with-match-type/</link>
		<comments>http://jonlorenzini.com/2012/convert-adwords-keywords-w-quotes-and-brackets-to-keywords-with-match-type/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 17:58:20 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Excel Formula]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=173</guid>
		<description><![CDATA[When exporting from Adwords and other tools, keywords come out in this format: Match Type Adwords Export Broad Keyword One Phrase &#8220;Keyword One&#8221; Exact [Keyword One] When you would want it in this format (or vice versa): Match Type Upload Sheet Keyword Upload Sheet Match Type Broad Keyword One Broad Phrase Keyword One Phrase Exact [...]]]></description>
			<content:encoded><![CDATA[<p>When exporting from Adwords and other tools, keywords come out in this format:</p>
<table border="1">
<tbody>
<tr>
<td><strong>Match Type</strong></td>
<td><strong>Adwords Export</strong></td>
</tr>
<tr>
<td>Broad</td>
<td>Keyword One</td>
</tr>
<tr>
<td>Phrase</td>
<td>&#8220;Keyword One&#8221;</td>
</tr>
<tr>
<td>Exact</td>
<td>[Keyword One]</td>
</tr>
</tbody>
</table>
<p>When you would want it in this format (or vice versa):</p>
<table border="1">
<tbody>
<tr>
<td><strong>Match Type</strong></td>
<td><strong>Upload Sheet Keyword</strong></td>
<td><strong>Upload Sheet Match Type</strong></td>
</tr>
<tr>
<td>Broad</td>
<td>Keyword One</td>
<td>Broad</td>
</tr>
<tr>
<td>Phrase</td>
<td>Keyword One</td>
<td>Phrase</td>
</tr>
<tr>
<td>Exact</td>
<td>Keyword One</td>
<td>Exact</td>
</tr>
</tbody>
</table>
<p>The formula below allows you to convert these keywords from the first format to the second one (assumes keyword list start is in B2):</p>
<p>Upload Sheet Keyword Formula:</p>
<div style="border: solid 1px #999; height: 50px; white-space: pre-wrap; overflow: auto; padding: 5px;">
<pre>=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(B2,&quot;&quot;&quot;&quot;,&quot;&quot;),&quot;[&quot;,&quot;&quot;),&quot;]&quot;,&quot;&quot;)</pre>
</div>
<p>Upload Sheet Match Type Formula:</p>
<div style="border: solid 1px #999; height: 50px; white-space: pre-wrap; overflow: auto; padding: 5px;">
<pre>=IF(LEFT(B2,1)=&quot;&quot;&quot;&quot;,&quot;Phrase&quot;,IF(LEFT(B2,1)=&quot;[&quot;,&quot;Exact&quot;,&quot;Broad&quot;))</pre>
</div>
<p>To switch from the second format back to the first use the formula below (assuming keyword is in B2 and match type is in C2):</p>
<p>Adwords Sheet Formula (assumes keyword is in B2 and match type is in C2):</p>
<div style="border: solid 1px #999; height: 50px; white-space: pre-wrap; overflow: auto; padding: 5px;">
<pre>=IF(LEFT(C2,1)=&quot;P&quot;,&quot;&quot;&quot;&quot;&amp;amp;B2&amp;amp;&quot;&quot;&quot;&quot;,IF(LEFT(C2,1)=&quot;E&quot;,&quot;[&quot;&amp;amp;B2&amp;amp;&quot;]&quot;,B2))</pre></div>
<p>Any other formats you need converted? Drop a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/convert-adwords-keywords-w-quotes-and-brackets-to-keywords-with-match-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wishlist for Google Adwords</title>
		<link>http://jonlorenzini.com/2012/wishlist-for-google-adwords/</link>
		<comments>http://jonlorenzini.com/2012/wishlist-for-google-adwords/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:19:05 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=166</guid>
		<description><![CDATA[Recently I put together a list of things I would like to see in the Google Adwords UI. While these applications are for larger search accounts and are very “Pie in the Sky” I figured it would be fun to throw them all out there and see if any become a reality: Campaign Level • [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I put together a list of things I would like to see in the Google Adwords UI. While these applications are for larger search accounts and are very “Pie in the Sky” I figured it would be fun to throw them all out there and see if any become a reality:</p>
<p><span style="text-decoration: underline;"><strong>Campaign Level</strong></span><br />
• Adding grouping to campaigns for reporting/budget allocation</p>
<p>e.g. “Data Center Efficiency &#8211; Branded – Broad”, “Federal Government – Branded – Broad”, and “Rugged Terms” all fall under the user-defined FED group)<br />
This would allow the granularity associated with testing campaign-level settings but the ability to roll up the data for reporting and budgeting purposes. While filters exist for this purpose, it only provides the total for that filter instead of subtotals for all filters – resulting in dozens of CSV exports instead of 1 with subtotals.</p>
<p>• Adding additional columns for groupings defined by the user</p>
<p>• Built in attainment percentages to see how our spend measures against our budget targets</p>
<p>Formula: (Current spend towards IO / (Total budget / Date range listed on IO * Current live days)) – Breaking these out by the grouping listed above would be AWESOME</p>
<p><span style="text-decoration: underline;"><strong>Keyword Level</strong></span><br />
• Changing the negative keywords from the bottom of the keywords tab to another tab like the desktop editor</p>
<p>• Search query reports that check if keywords exist in other accounts under the same MCC</p>
<p>• Checking for duplicate keywords across multiple accounts</p>
<p>• Stats by negative keyword on impressions blocked (I know this is defiantly a pie in the sky) but would allow us to either refine the negative if it is blocking TOO much traffic or reduce errors on negative match type</p>
<p><span style="text-decoration: underline;"><strong>Creative Level</strong></span><br />
• Rank creative by deviation from ad group average (to call out which ads within an adgroup causes the largest drag on CTR and which of the best performers need to be kept/modeled after)</p>
<p><span style="text-decoration: underline;"><strong>Change History Exports</strong></span><br />
• Make exports more usable by splitting out changes into different columns. This would allow us to tie in optimizations by line as well as filter through the data quickly. When all details is selected it gives keywords by name with [ ] or “” could that be replaced with a match type column?</p>
<p><span style="text-decoration: underline;"><strong>General</strong></span><br />
• Save custom date range or apply rules to custom date range to prevent manually entering one fiscal week after another</p>
<p>e.g. an option: following (same unit of time) from custom date range, previous (same unit of time) from custom date range<br />
e.g. Entering quarter start and end dates for exports by quarter</p>
<p>&nbsp;</p>
<p>Have any others you would add? Leave a comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2012/wishlist-for-google-adwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculator: Search &amp; Sort Ad Copy in Excel</title>
		<link>http://jonlorenzini.com/2011/formula-search-sort-ad-copy-in-excel/</link>
		<comments>http://jonlorenzini.com/2011/formula-search-sort-ad-copy-in-excel/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 08:35:47 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Excel Formula Generator]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=122</guid>
		<description><![CDATA[What does this do? Below is a generator that creates a custom Excel formula. It searches up to 5 columns of data for a keyword you define. Why this is important for Search Engine Marketing (SEM)? Updating, filtering and sorting Adcopy is a very annoying important part of any Account Manager&#8217;s day-to-day tasks. In order to ensure [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jonlorenzini.com/wp-content/uploads/2011/12/calculator1-300x225.jpg"><img class="alignnone size-full wp-image-106" title="calculator" src="http://jonlorenzini.com/wp-content/uploads/2011/12/calculator1-300x225.jpg" alt="excel calculator" width="300" height="225" /></a></p>
<h2>What does this do?</h2>
<p>Below is a generator that creates a custom Excel formula. It searches up to 5 columns of data for a keyword you define.</p>
<h2>Why this is important for Search Engine Marketing (SEM)?</h2>
<p>Updating, filtering and sorting Adcopy is a very <del>annoying</del> important part of any Account Manager&#8217;s day-to-day tasks. In order to ensure the copy is current and no legacy ads with improper call-outs exist, we frequently sort, filter and search the headlines, description line 1, description line 2 and display URLs for a given keyword. After writing dozens of if(search()) functions, I decided to create a generator to do it for us.</p>
<blockquote>
<p style="text-align: center;"><div class="iframe-wrapper">
  <iframe src="http://jonlorenzini.com/TextSearch.php" frameborder="0" style="height:380px;width:330px;">Please upgrade your browser</iframe>
</div>
</blockquote>
<p style="text-align: left;">Hopefully this helps and while a generator might not have been necessary, I have been trying to put some of my new PHP skills to creating something useful. Thanks again to <a href="http://wesleylorenzini.com/">Wes Lorenzini</a> for answering all my annoying questions regarding errors (damn quotations within strings!).</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2011/formula-search-sort-ad-copy-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculator: Excel Formula to Calculate Fiscal Week, Quarter and Year</title>
		<link>http://jonlorenzini.com/2011/fiscal_week_quarter_year_excel_formula/</link>
		<comments>http://jonlorenzini.com/2011/fiscal_week_quarter_year_excel_formula/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 17:00:36 +0000</pubDate>
		<dc:creator>jon7187</dc:creator>
				<category><![CDATA[Excel Formula Generator]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[fiscal quarter]]></category>
		<category><![CDATA[fiscal week]]></category>
		<category><![CDATA[fiscal week formulas]]></category>
		<category><![CDATA[fiscal year]]></category>
		<category><![CDATA[formula generator]]></category>
		<category><![CDATA[generating formulas]]></category>
		<category><![CDATA[how to get fiscal weeks]]></category>
		<category><![CDATA[search engine marketing]]></category>
		<category><![CDATA[SEM]]></category>

		<guid isPermaLink="false">http://jonlorenzini.com/?p=85</guid>
		<description><![CDATA[Below is a formula generator used to take dates in Excel (assumed as A1) and convert them into the following: Fiscal Week Fiscal Quarter Fiscal Year This is particularly useful when clients use non-generic fiscal calendars and you need to assign their fiscal information to large amounts of data in Excel. The most common application I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://jonlorenzini.com/wp-content/uploads/2011/12/calculator1-300x225.jpg"><img class="size-full wp-image-106" title="calculator1-300x225" src="http://jonlorenzini.com/wp-content/uploads/2011/12/calculator1-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: left;">Below is a formula generator used to take dates in Excel (assumed as A1) and convert them into the following:</p>
<ul>
<li>Fiscal Week</li>
<li>Fiscal Quarter</li>
<li>Fiscal Year</li>
</ul>
<p>This is particularly useful when clients use non-generic fiscal calendars and you need to assign their fiscal information to large amounts of data in Excel. The most common application I use this for is when pulling front-end metrics from a search engine&#8217;s UI.</p>
<p>To use the generator below, enter the first day of your organization&#8217;s fiscal calendar, and what fiscal year it refers to. When the formulas are generated, copy them into Excel and change the reference cell from A1 to the cell with the dates.</p>
<p style="text-align: center;"><div class="iframe-wrapper">
  <iframe src="http://jonlorenzini.com/fiscalweekformulacalculator.php" frameborder="0" style="height:300px;width:330px;">Please upgrade your browser</iframe>
</div><br />
Please note: These formulas are assuming a 52 week, 1 calendar year program. If it differs, please check the output.</p>
<p style="text-align: left;"> A special thanks to <a title="Chris Sipola" href="http://www.linkedin.com/pub/christopher-sipola/13/734/828" target="_blank">Chris Sipola</a> for the initial formulas, and <a title="Wes Lorenzini" href="http://wesleylorenzini.com/">Wes Lorenzini</a> / this <a title="this PHP Tutorial Site" href="http://www.tizag.com/phpT/examples/formex.php" target="_blank">PHP tutorial site</a> for teaching me the basic PHP GET and POST functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://jonlorenzini.com/2011/fiscal_week_quarter_year_excel_formula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
