<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<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/"
	>

<channel>
	<title>IAintaBlonde.com</title>
	<link>http://www.iaintablonde.com</link>
	<description>Now that u know, lets get serious..............</description>
	<pubDate>Tue, 07 Oct 2008 17:37:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<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>
		
	<dc:subject>Uncategorized</dc:subject><dc:subject>Funny</dc:subject>
	<!-- 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





FunnyFunnyShare This
---Related Articles at IAintaBlonde.com:No Related Posts]]></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>
<a href="http://www.iaintablonde.com/index.php?tag=funny" rel="tag">Funny</a><a href="http://www.iaintablonde.com/index.php?tag=funny" rel="tag">Funny</a><p class="akst_link"><a href="http://www.iaintablonde.com/?p=192&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_192" class="akst_share_link" rel="nofollow">Share This</a>
</p><p>---<br />Related Articles at IAintaBlonde.com:<li>No Related Posts</li></p><br />]]></content:encoded>
			<wfw:commentRSS>http://www.iaintablonde.com/2008/06/28/funny-quote-of-the-day/feed/</wfw:commentRSS>
		</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>
		
	<dc:subject>Uncategorized</dc:subject><dc:subject>Copy previous row details into blank cells below</dc:subject><dc:subject>Using VB Editor in Excel</dc:subject>
	<!-- 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(&#8221;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(&#8221;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>
<a href="http://www.iaintablonde.com/index.php?tag=copy-previous-row-details-into-blank-cells-below" rel="tag">Copy previous row details into blank cells below</a>  <a href="http://www.iaintablonde.com/index.php?tag=using-vb-editor-in-excel" rel="tag">Using VB Editor in Excel</a><a href="http://www.iaintablonde.com/index.php?tag=copy-previous-row-details-into-blank-cells-below" rel="tag">Copy previous row details into blank cells below</a>, <a href="http://www.iaintablonde.com/index.php?tag=using-vb-editor-in-excel" rel="tag">Using VB Editor in Excel</a><p class="akst_link"><a href="http://www.iaintablonde.com/?p=183&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_183" class="akst_share_link" rel="nofollow">Share This</a>
</p><p>---<br />Related Articles at IAintaBlonde.com:<li>No Related Posts</li></p><br />]]></content:encoded>
			<wfw:commentRSS>http://www.iaintablonde.com/2008/01/15/copy-blank-cells-into-a-column-excel/feed/</wfw:commentRSS>
		</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>
		
	<dc:subject>Uncategorized</dc:subject>
	<dc:subject>Cool Software</dc:subject>
	<dc:subject>I Love Programming!</dc:subject>
	<dc:subject>MS Office 2007</dc:subject><dc:subject>Coding in Visual Basic</dc:subject><dc:subject>Cool Software</dc:subject><dc:subject>I Love Programming!</dc:subject><dc:subject>Macro to remove hyperlinks</dc:subject><dc:subject>Microsoft Excel</dc:subject><dc:subject>MS Office 2007</dc:subject>
	<!-- 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>
<a href="http://www.iaintablonde.com/index.php?tag=coding-in-visual-basic" rel="tag">Coding in Visual Basic</a>, <a href="http://www.iaintablonde.com/index.php?tag=cool-software" rel="tag">Cool Software</a>, <a href="http://www.iaintablonde.com/index.php?tag=i-love-programming%21" rel="tag">I Love Programming!</a>, <a href="http://www.iaintablonde.com/index.php?tag=macro-to-remove-hyperlinks" rel="tag">Macro to remove hyperlinks</a>, <a href="http://www.iaintablonde.com/index.php?tag=microsoft-excel" rel="tag">Microsoft Excel</a>  <a href="http://www.iaintablonde.com/index.php?tag=ms-office-2007" rel="tag">MS Office 2007</a><a href="http://www.iaintablonde.com/index.php?tag=coding-in-visual-basic" rel="tag">Coding in Visual Basic</a>, <a href="http://www.iaintablonde.com/index.php?tag=cool-software" rel="tag">Cool Software</a>, <a href="http://www.iaintablonde.com/index.php?tag=i-love-programming%21" rel="tag">I Love Programming!</a>, <a href="http://www.iaintablonde.com/index.php?tag=macro-to-remove-hyperlinks" rel="tag">Macro to remove hyperlinks</a>, <a href="http://www.iaintablonde.com/index.php?tag=microsoft-excel" rel="tag">Microsoft Excel</a>, <a href="http://www.iaintablonde.com/index.php?tag=ms-office-2007" rel="tag">MS Office 2007</a><p class="akst_link"><a href="http://www.iaintablonde.com/?p=178&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_178" class="akst_share_link" rel="nofollow">Share This</a>
</p><p>---<br />Related Articles at IAintaBlonde.com:<li><a href="http://www.iaintablonde.com/2008/01/14/installing-mysql-on-windows-xp/">Installing MYSQL on windows xp</a></li><li><a href="http://www.iaintablonde.com/2008/04/30/finally-i-have-my-photoblog-up/">Finally i have my photoblog up!</a></li><li><a href="http://www.iaintablonde.com/2007/06/28/ipod-shuffle-cannot-format-stuck-at-green-light/">iPod Shuffle: Cannot format , Stuck at green light!!</a></li><li><a href="http://www.iaintablonde.com/2007/03/04/coco-r-playing-with-how-compilers-work/">Coco /R  : Playing with how COMPILERS work!</a></li><li><a href="http://www.iaintablonde.com/2007/02/12/installation-steps-ns-2-network-simulator-229-with-cygwin/">Installation Steps: NS 2 (Network Simulator 2.2.9) with CYGWIN</a></li><li><a href="http://www.iaintablonde.com/2007/01/04/problem-uninstalling-studio-8/">problem uninstalling studio 8</a></li></p><br />]]></content:encoded>
			<wfw:commentRSS>http://www.iaintablonde.com/2007/11/20/how-to-remove-hyperlinks-from-a-column-in-microsoft-excel/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
