<?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>IAintaBlonde.com &#187; Uncategorized</title>
	<atom:link href="http://www.iaintablonde.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iaintablonde.com</link>
	<description>Now that u know, lets get serious..............</description>
	<lastBuildDate>Thu, 04 Feb 2010 21:17:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Funny Quote of the daY!</title>
		<link>http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/</link>
		<comments>http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 18:06:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

	<!-- AutoMeta Start -->
	<category>universe</category>
	<category>bigger</category>
	<category>idiot</category>
	<category>rick</category>
	<category>idiots</category>
	<category>striving</category>
	<category>winning</category>
	<category>race</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/</guid>
		<description><![CDATA[&#8220;Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.&#8221;




-Rick Cook





Share on Facebook]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.&#8221;</p></blockquote>
<div class="entry-body">
<div>
<div class="item-body">
<blockquote>
<div>-Rick Cook</div>
<div></div>
</blockquote>
</div>
</div>
</div>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/" target="_blank"><img src="http://www.iaintablonde.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy Previous row data into blank cells (in a selected column) : EXCEL</title>
		<link>http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/</link>
		<comments>http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 17:54:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

	<!-- AutoMeta Start -->
	<category>cells</category>
	<category>lastrow</category>
	<category>specialcells</category>
	<category>column</category>
	<category>range</category>
	<category>usedrange</category>
	<category></category>
	<category>msgbox</category>
	<category>lastcell</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/</guid>
		<description><![CDATA[Sub Fill_Blanks()
Dim col As Long
Set wks = ActiveSheet
With wks
col = ActiveCell.Column
&#8216;or
&#8216;col = .range(&#8220;b1&#8243;).column
Set rng = .UsedRange  &#8216;try to reset the lastcell
LastRow = .Cells.SpecialCells(xlCellTypeLastCell).Row
Set rng = Nothing
On Error Resume Next
Set rng = .Range(.Cells(2, col), .Cells(LastRow, col)) _
.Cells.SpecialCells(xlCellTypeBlanks)
On Error GoTo 0
If rng Is Nothing Then
MsgBox &#8220;No blanks found&#8221;
Exit Sub
Else
rng.FormulaR1C1 = &#8220;=R[-1]C&#8221;
End If
&#8216;replace formulas with values
With .Cells(1, [...]]]></description>
			<content:encoded><![CDATA[<p>Sub Fill_Blanks()<br />
Dim col As Long</p>
<p>Set wks = ActiveSheet<br />
With wks<br />
col = ActiveCell.Column<br />
&#8216;or<br />
&#8216;col = .range(&#8220;b1&#8243;).column</p>
<p>Set rng = .UsedRange  &#8216;try to reset the lastcell<br />
LastRow = .Cells.SpecialCells(xlCellTypeLastCell).Row<br />
Set rng = Nothing<br />
On Error Resume Next<br />
Set rng = .Range(.Cells(2, col), .Cells(LastRow, col)) _<br />
.Cells.SpecialCells(xlCellTypeBlanks)<br />
On Error GoTo 0</p>
<p>If rng Is Nothing Then<br />
MsgBox &#8220;No blanks found&#8221;<br />
Exit Sub<br />
Else<br />
rng.FormulaR1C1 = &#8220;=R[-1]C&#8221;<br />
End If</p>
<p>&#8216;replace formulas with values<br />
With .Cells(1, col).EntireColumn<br />
.Value = .Value<br />
End With</p>
<p>End With</p>
<p>End Sub</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/" target="_blank"><img src="http://www.iaintablonde.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove hyperlinks from a column in Microsoft Excel?</title>
		<link>http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/</link>
		<comments>http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 19:57:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Software]]></category>
		<category><![CDATA[I Love Programming!]]></category>
		<category><![CDATA[MS Office 2007]]></category>
		<category><![CDATA[Uncategorized]]></category>

	<!-- AutoMeta Start -->
	<category>hyperlinks</category>
	<category>code</category>
	<category>cell</category>
	<category>excel</category>
	<category>range</category>
	<category>column</category>
	<category>basic</category>
	<category>data</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/</guid>
		<description><![CDATA[I love visual basic&#8230; yes its having the word basic..but its so much more than that now!!
Many times when you export data from internet or just plain copy-paste when nothing else works, most of the HTML carries itself with the data into excel. Heres some code to remove hyperlinks from a column in excel.
**************
Sub RemoveHyperlink() [...]]]></description>
			<content:encoded><![CDATA[<p>I love visual basic&#8230; yes its having the word basic..but its so much more than that now!!</p>
<p>Many times when you export data from internet or just plain copy-paste when nothing else works, most of the HTML carries itself with the data into excel. Heres some code to remove hyperlinks from a column in excel.</p>
<p>**************</p>
<p><code>Sub RemoveHyperlink() </code></p>
<p><code>Dim Cell As Range </code></p>
<p><code>For Each Cell In Intersect(Selection, ActiveSheet.UsedRange) </code></p>
<p><code>On Error Resume Next </code></p>
<p><code>Cell.Hyperlinks.Delete </code></p>
<p><code>Next Cell  </code></p>
<p><code>End Sub</code></p>
<p>**********************</p>
<p>All you gotta do you run the macro after selecting the range of cells with hyperlinks <img src='http://www.iaintablonde.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/" target="_blank"><img src="http://www.iaintablonde.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
