<?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>Bacon Bits:</title>
	<atom:link href="http://datapigtechnologies.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://datapigtechnologies.com/blog</link>
	<description>A DataPig Technologies Blog</description>
	<lastBuildDate>Mon, 30 Apr 2012 06:31:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Running Advanced SQL Stored Procedures from Excel</title>
		<link>http://datapigtechnologies.com/blog/index.php/running-advanced-sql-stored-procedures-from-excel/</link>
		<comments>http://datapigtechnologies.com/blog/index.php/running-advanced-sql-stored-procedures-from-excel/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 06:28:09 +0000</pubDate>
		<dc:creator>datapig</dc:creator>
				<category><![CDATA[Excel VBA]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Power Tips]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://datapigtechnologies.com/blog/index.php/running-advanced-sql-stored-procedures-from-excel/</guid>
		<description><![CDATA[A while back, I posted two articles that showed you how to run Stored Procedures from Excel. In &#8220;Running a SQL Stored Procedure from Excel&#8220;, I showed you how to fire a simple SQL Stored Procedure that returns a simple dataset. In &#8220;Running a SQL Stored Procedure from Excel with Dynamic Parameters&#8220;, I showed you [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I posted two articles that showed you how to run Stored Procedures from Excel.
</p>
<p>In &#8220;<a href="http://datapigtechnologies.com/blog/index.php/running-a-sql-stored-procedure-from-excel/" target="_blank">Running a SQL Stored Procedure from Excel</a>&#8220;, I showed you how to fire a simple SQL Stored Procedure that returns a simple dataset.  In &#8220;<a href="http://datapigtechnologies.com/blog/index.php/running-a-sql-stored-procedure-from-excel-with-dynamic-parameters/" target="_blank">Running a SQL Stored Procedure from Excel with Dynamic Parameters</a>&#8220;, I showed you how to pass parameters to a SQL Stored Procedure so you can filter the returned dataset.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>In both of those examples, the common denominator is that the Stored Procedure can only contain a select statement.  For example, &#8216;<strong>Select * from Market Sales</strong>&#8216;.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>But in some cases, your Stored Procedures may need to contain advanced functionality such as; creating temp tables, deleting data, updating data, etc.   In these cases, you can&#8217;t simply fire the Stored Procedure from Excel.  You&#8217;ll need to adjust the Procedure so that the results will return to Excel.
</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="font-size:14pt"><strong>The Cause of the Problem<br />
</strong></span></p>
<p>When you create a new Stored Procedure in SQL Server, you will automatically get a line that reads <strong>SET NOCOUNT ON</strong>.  This one line of code, put at the top of a stored procedure turns off the messages that SQL Server sends back to the client after each T-SQL statement is executed.  This is intended to improve performance by suppressing unnecessary messages to the client.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>However, this will also suppress the returning of data to Excel, because <strong>SET NOCOUNT ON </strong>tells SQL Server that there is no need for this information to be passed back to the client.
</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="font-size:14pt"><strong>The Fix<br />
</strong></span></p>
<p>In this example, procedure, I&#8217;m creating two Temp tables in the procedure then creating a select statement which returns data from the two created tables.  In order to be able to return the data to Excel with this Stored Procedure, I will need to add a line at the end of the Procedure that reads <strong>SET NOCOUNT OFF</strong>.
</p>
<p>
		<img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/043012_0628_RunningAdva1.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="color:white">.<br />
</span></p>
<p>By wrapping your Stored Procedures with <strong>SET NOCOUNT ON … SET NOCOUNT OFF, </strong>you can fire all kinds of Stored Procedures from Excel:
</p>
<ul>
<li>Stored Procedures that create and use Temp Tables
</li>
<li>Stored Procedures that contain Delete and Update Statements
</li>
<li>Stored Procedures that contain Truncate and Insert Statements
</li>
</ul>
<p><span style="color:white">.<br />
</span></p>
<p>In short, you can use this trick in conjunction with the other tricks you learned (in the other articles mentioned above) to trigger virtually any SQL Stored Procedure directly from Excel!</p>
]]></content:encoded>
			<wfw:commentRss>http://datapigtechnologies.com/blog/index.php/running-advanced-sql-stored-procedures-from-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hidden Pivot Table Calculated Field Command</title>
		<link>http://datapigtechnologies.com/blog/index.php/hidden-pivot-table-calculated-field-command/</link>
		<comments>http://datapigtechnologies.com/blog/index.php/hidden-pivot-table-calculated-field-command/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 10:50:27 +0000</pubDate>
		<dc:creator>datapig</dc:creator>
				<category><![CDATA[Pivot Tables]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[PivotTables]]></category>

		<guid isPermaLink="false">http://datapigtechnologies.com/blog/index.php/hidden-pivot-table-calculated-field-command/</guid>
		<description><![CDATA[A few months back, I discovered a hidden Pivot Table command on the Home tab in Excel. If you put your cursor in the Values/Data area of a Pivot Table, you can Go to the Home Tab and select Insert-&#62;Insert Calculated Field. . If you put your cursor in the Row or Column area of [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back, I discovered a hidden Pivot Table command on the Home tab in Excel.
</p>
<p>If you put your cursor in the Values/Data area of a Pivot Table, you can Go to the Home Tab and select Insert-&gt;Insert Calculated Field.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/042612_1050_HiddenPivot1.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p>If you put your cursor in the Row or Column area of a Pivot Table, you can Go to the Home Tab and select Insert-&gt;Insert Calculated Item.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/042612_1050_HiddenPivot2.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="color:white">.<br />
</span></p>
<p>Ok…I know you&#8217;re thinking that this is no big deal.  I felt the same way when I first noticed it.  I thought it was simply interesting that it was there &#8211; nothing more.  But I have to say that I use it all the time now that I know it&#8217;s there.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>I think it&#8217;s because even if I&#8217;m working with a Pivot Table, I&#8217;m usually on the Home tab. It&#8217;s easier for me go to Insert -&gt;Insert Calculated Field rather the alternative; switch to the PivotTable Tools contextual tab, click on Options, and find the calculated field/item options in the Calculations group.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>For you hot-key fans out there, I know there is a hot key that I could use.
</p>
<p>I hate taking my hand off the mouse; I avoid it wherever I can.  Other than Ctrl+C and Ctrl+V, I don&#8217;t do hot keys.  Unless I&#8217;m stuck with a <a href="http://datapigtechnologies.com/blog/index.php/ditch-the-darth-vader-mouse/">Darth Vader Mouse</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://datapigtechnologies.com/blog/index.php/hidden-pivot-table-calculated-field-command/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Group Sheets by Color</title>
		<link>http://datapigtechnologies.com/blog/index.php/group-sheets-by-color/</link>
		<comments>http://datapigtechnologies.com/blog/index.php/group-sheets-by-color/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 09:44:46 +0000</pubDate>
		<dc:creator>datapig</dc:creator>
				<category><![CDATA[Excel VBA]]></category>
		<category><![CDATA[Visualizations]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://datapigtechnologies.com/blog/?p=3683</guid>
		<description><![CDATA[Just recently, I encountered a workbook where the worksheet tabs were colored. The colors apparently had some meaning, indicating that each colored tab is somehow related to another tab. So of course, I wanted to sort the tabs by color. It goes without saying that doing this manually was out of the question; there were [...]]]></description>
			<content:encoded><![CDATA[<p>Just recently, I encountered a workbook where the worksheet tabs were colored.   The colors apparently had some meaning, indicating that each colored tab is somehow related to another tab.  So of course, I wanted to sort the tabs by color.  It goes without saying that doing this manually was out of the question; there were too many tabs, I was too lazy, and the hour was late.  So VBA to the rescue!
</p>
<p><span style="color:white">.</span></p>
<p>
This macro iterates through the sheets in the workbook, comparing the tab color index of current sheet to that of the previous one.  If the previous sheet has the same color index number as the current sheet, then we move the current sheet before it.
</p>
<p><span style="color:white">.</span></p>
<p>
By the time all the iterations are done, all sheets are grouped together based on their tab colors.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/042312_0944_GroupSheets1.png" alt=""/><strong><br />
		</strong></p>
<p><span style="color:white">.<br />
</span></p>
<p><div class="igBar"><span id="lvb-2"><a href="#" onclick="javascript:showPlainTxt('vb-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">Visual Basic:</span>
<div id="vb-2">
<div class="vb">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">Sub</span> GroupSheetsByColor<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">Dim</span> CurrentSheetIndex <span style="color: #b1b100;">As</span> <span style="color: #b1b100;">Integer</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">Dim</span> PrevSheetIndex <span style="color: #b1b100;">As</span> <span style="color: #b1b100;">Integer</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080;">'Set starting counts and start looping</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">For</span> CurrentSheetIndex = <span style="color: #cc66cc;color:#800000;">1</span> <span style="color: #b1b100;">To</span> Sheets.<span style="color: #b1b100;">Count</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">For</span> PrevSheetIndex = <span style="color: #cc66cc;color:#800000;">1</span> <span style="color: #b1b100;">To</span> CurrentSheetIndex - <span style="color: #cc66cc;color:#800000;">1</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080;">'Check Current sheet against Previous sheet to see if they match</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">If</span> Sheets<span style="color:#006600; font-weight:bold;">&#40;</span>PrevSheetIndex<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color: #b1b100;">Tab</span>.<span style="color: #66cc66;">ColorIndex</span> = _</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Sheets<span style="color:#006600; font-weight:bold;">&#40;</span>CurrentSheetIndex<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color: #b1b100;">Tab</span>.<span style="color: #66cc66;">ColorIndex</span> <span style="color: #b1b100;">Then</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080;">'If so, move Current sheet before Previous</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Sheets<span style="color:#006600; font-weight:bold;">&#40;</span>PrevSheetIndex<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color: #66cc66;">Move</span> _</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; Before:=Sheets<span style="color:#006600; font-weight:bold;">&#40;</span>CurrentSheetIndex<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">End</span> <span style="color: #b1b100;">If</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #808080;">'Loop back around to iterate again</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">Next</span> PrevSheetIndex</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #b1b100;">Next</span> CurrentSheetIndex</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #b1b100;">End</span> <span style="color: #b1b100;">Sub</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
<p><span style="color:white">.</span></p>
<p>
You won't use this macro every day, but it is one of those macros you can keep around for special occasions.
</p>
<p>Like a fine bottle of wine, or bean dip.
</p>
<p>
 </p>
<p>
 </p>
]]></content:encoded>
			<wfw:commentRss>http://datapigtechnologies.com/blog/index.php/group-sheets-by-color/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Live Training Events in May</title>
		<link>http://datapigtechnologies.com/blog/index.php/live-training-events-in-may/</link>
		<comments>http://datapigtechnologies.com/blog/index.php/live-training-events-in-may/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 13:13:54 +0000</pubDate>
		<dc:creator>datapig</dc:creator>
				<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://datapigtechnologies.com/blog/index.php/live-training-events-in-may/</guid>
		<description><![CDATA[Over the last few weeks, you've probably run into some advertising about Live Excel Training Events. These events are an alternative to learning from a blog, a website, or online courses. . Why do I like live training events? Well, I spend all day in a chair (not moving my ass an inch to the [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few weeks, you've probably run into some advertising about Live Excel Training Events.  These events are an alternative to learning from a blog, a website, or online courses.
</p>
<p><span style="color:white">.<br />
</span></p>
<p>Why do I like live training events?  Well, I spend all day in a chair (not moving my ass an inch to the left or right for hours).  And although I do interact with the Excel community online, it's not the same as being in the same room, interacting in person.   Here are some of the benefits I see each time I put on a live training event.
</p>
<ul>
<li>Lots of new Techniques being taught by expert instructors.
</li>
<li>Meet and network with other analysts.
</li>
<li>Plenty of ideas bounced around about new ways of doing things.
</li>
<li>Walk away with free books and working examples.
</li>
<li>Lots of food, drink, and nerdy fun.
</li>
</ul>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/041312_1313_LiveTrainin1.jpg" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="color:white">.<br />
</span></p>
<p>It just so happens that we have an upcoming event!
</p>
<p>We, Dick Kusleika (<a href="http://www.dailydoseofexcel.com/" target="_blank">Daily Dose of Excel</a>) and I (<a href="http://www.datapigtechnologies.com/" target="_blank">DataPig Technologies</a>), will be hosting our Excel Power Analyst BootCamp in Omaha on May 22nd and 23rd.
</p>
<p><a href="https://www.regonline.com/builder/site/?eventid=1064283"><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/041312_1313_LiveTrainin2.png" alt="" border="0"/></a>
	</p>
<p>
 </p>
<p>This two-day boot camp is designed for Excel Power Analysts who are looking to more effectively build and manage better data reporting mechanisms. During this workshop, you'll be introduced to a wide array of tips and techniques that will muscle up your skills in Data Crunching, Reporting, and Automation.
</p>
<p>Going beyond simple Excel tricks, you will learn to:
</p>
<ul>
<li>Gain efficiencies with powerful data crunching and spreadsheet auditing tips
</li>
<li>Go beyond basic analysis with advanced PivotTables techniques
</li>
<li>Create powerful dashboards with interactive data modeling methods
</li>
<li>Integrate Excel with external data sources (SQL Server, Access, SharePoint)
</li>
<li>Introduce powerful new BI capabilities with Power Pivot for Excel 2010
</li>
<li>Implement macro-charged reporting with VBA
</li>
</ul>
<p><u><a href="https://www.regonline.com/builder/site/?eventid=1064283" target="_blank"><span style="font-size:12pt"><strong>Sign up before May 1<sup>st</sup> and save $200 off registration!</strong></span></a></u><span style="font-size:12pt"><strong><br />
			</strong></span></p>
<p><span style="color:white"><strong>.<br />
</strong></span></p>
<p><span style="color:white"><strong>.<br />
</strong></span></p>
<p><span style="font-size:14pt"><strong>But Mike, I don't live in the United States!<br />
</strong></span></p>
<p>If you're and international Excel Expert, you should check out Chandoo's Live Events May – June.
</p>
<p>He's hosting a series of events on Advanced Dashboards in Excel throughout Australia.
</p>
<p><span style="color:white">.</span><span style="font-size:14pt"><strong><br />
				<a href="http://chandoo.org/wp/2012/04/04/sign-up-for-my-excel-dashboard-masterclass-in-australia/"><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/041312_1313_LiveTrainin3.png" alt="" border="0"/></a></strong></span><span style="color:white"><br />
		</span></p>
<p><em>"This 2 day MasterClass is aimed at managers, analysts, reporting professionals, executives in sales, marketing, customer service or anyone who wants to learn about Excel Dashboards."<br />
</em></p>
<p> Some of the topics you will learn in Chandoo's MasterClass:
</p>
<ul>
<li>Excel formulas for dashboards
</li>
<li>Applying advanced conditional formatting for dashboards
</li>
<li>Selecting right charts for any situation
</li>
<li>Excel 2010 – sparklines, slicers
</li>
<li>Customizing Excel charts
</li>
</ul>
<p><a href="http://chandoo.org/wp/2012/04/04/sign-up-for-my-excel-dashboard-masterclass-in-australia/" target="_blank">Visit Chandoo.org to get more details.</a>
	</p>
]]></content:encoded>
			<wfw:commentRss>http://datapigtechnologies.com/blog/index.php/live-training-events-in-may/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Icons Copied from the Web</title>
		<link>http://datapigtechnologies.com/blog/index.php/delete-icons-copied-from-the-web/</link>
		<comments>http://datapigtechnologies.com/blog/index.php/delete-icons-copied-from-the-web/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 13:08:15 +0000</pubDate>
		<dc:creator>datapig</dc:creator>
				<category><![CDATA[Excel Tips and Tricks]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://datapigtechnologies.com/blog/index.php/delete-icons-copied-from-the-web/</guid>
		<description><![CDATA[So there you are, copying data from a web page into Excel. But when you paste the data, you notice that a bunch of annoying clip art and icons are pasted along with it. What do you do? Delete them one by one Have the Temp for Hire delete them one by one Go into [...]]]></description>
			<content:encoded><![CDATA[<p>So there you are, copying data from a web page into Excel.  But when you paste the data, you notice that a bunch of annoying clip art and icons are pasted along with it. What do you do?
</p>
<ol>
<li>Delete them one by one
</li>
<li>Have the Temp for Hire delete them one by one
</li>
<li>Go into the bathroom stall and play Angry Birds for 30 minutes
</li>
</ol>
<p><span style="color:white">.<br />
</span></p>
<p>I'll show you what I do when this happens to me.<br />
<span id="more-3673"></span>
</p>
<p><span style="color:white">.<br />
</span></p>
<p>Let's say I copy some directions from MapQuest into an Excel file.  As you can see, their douchey icons get copied along with the data.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/040412_1308_DeleteIcons1.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p>If I try to delete the columns that hold the icons, the icons remain untouched.  What sort of Witchery is this!?
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/040412_1308_DeleteIcons2.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="color:white">.<br />
</span></p>
<p>So instead of doing that, I simply click <strong>Home tab-&gt;Find and Select-&gt;Go To Special</strong>.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/040412_1308_DeleteIcons3.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p>This takes me to the Go To Special dialog box where I select the Objects option.
</p>
<p>Note the expertly placed red circle made to look like its jumping off the screen.
</p>
<p>This is 3D blogging at its best.
</p>
<p><img src="http://datapigtechnologies.com/blog/wp-content/uploads/2012/04/040412_1308_DeleteIcons4.png" alt=""/>
	</p>
<p><span style="color:white">.<br />
</span></p>
<p>Once you press the OK button, all the icons will be selected.
</p>
<p>All you have to do is hit the delete button.
</p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="color:white">.<br />
</span></p>
<p><span style="font-size:12pt"><strong>Alternative (unnecessarily more convoluted) method<br />
</strong></span></p>
<p>Click on any of the icons
</p>
<p>Click on the Picture Tools Format tab
</p>
<p>Click the Selection Pane command button
</p>
<p>Click anywhere inside the Selection Pane then press Ctrl+A
</p>
<p>Press Delete</p>
]]></content:encoded>
			<wfw:commentRss>http://datapigtechnologies.com/blog/index.php/delete-icons-copied-from-the-web/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

