<?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>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>
		<item>
		<title>A hands on with MICROSOFT OFFICE 2007</title>
		<link>http://www.iaintablonde.com/2007/02/09/a-hands-on-with-microsoft-office-2007/</link>
		<comments>http://www.iaintablonde.com/2007/02/09/a-hands-on-with-microsoft-office-2007/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 17:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<dc:subject>Cool Stuff!</dc:subject>
	<dc:subject>MS Office 2007</dc:subject><br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/iaab123/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>301</b><br />

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.iaintablonde.com/2007/02/09/a-hands-on-with-microsoft-office-2007/</guid>
		<description><![CDATA[I would put it this way: Microsoft OFFICE 2007  is a all-that-you-need package. But no matter how cool the features are, there  are always pros and cons to anything that is called a SOFTWARE! So here is my  review after working on it for my homework&#8217;s at Speed School and everything  [...]]]></description>
			<content:encoded><![CDATA[<p>I would put it this way: Microsoft OFFICE 2007  is a all-that-you-need package. But no matter how cool the features are, there  are always pros and cons to anything that is called a SOFTWARE! So here is my  review after working on it for my homework&#8217;s at Speed School and everything  else.</p>
<p><font color="#0000ff"><strong>The good: </strong></font>Previously hard-to-find features now easier to explore; Word  embraces basic desktop publishing tools; Excel formulas are easier to reference;  PowerPoint presentations are more attractive; Outlook improves task and time  management; improved integration throughout the applications; smaller  application and file sizes; new file formats are easier to salvage if corrupted;  document security is more straightforward.</p>
<p><font color="#0000ff"><strong>The bad:</strong></font>  Drastic design changes demand a steep learning curve if you&#8217;re upgrading; new  interface isn&#8217;t always intuitive; contextual tabs and style galleries can be  distracting; users of Office 2000 through 2003 must install converters to open  Office 2007 files; no easy way to save work to the Web.</p>
<p><span id="intelliTXT"> Office 2007 also stores documents in a new format — one more compact and safer  than before. Colleagues who haven&#8217;t upgraded must download a free converter  program to open the files. You also can save files in the older formats with  Office 2007 — important because the converter isn&#8217;t available yet for Apple  Inc.&#8217;s <span class="yqlink"> Mac </span>computers. NOT A GOOD THING!!</span></p>
<p><span id="intelliTXT"> I study at UofL and am  sure by the time the University decides to get Office 2007, Office 2011 would  release. This means though i can use the cool features of ver 2007, without the  converter installed on the university PC&#8217;s, i would have to carry my laptop  around! Now, im not a big fan of doing that!</span></p>
<p>Most of the suite&#8217;s applications — Word, Excel,  PowerPoint, Outlook and Access — have done away with the old, familiar menus and  toolbars. In their place is the Ribbon — a horizontal strip of screen real  estate populated with tabs and icons grouped by function.<br />
There are some potential end-user stumbling blocks, though.</p>
<p>Office 2007 introduces a new interface,  including a ribbon comprising a combination of toolbars that changes depending  on the task a user is working on and the Office button, which replaces the old  File menu. It may be difficult for end users to get used to the new elements,  but we found the interface intuitive and eventually grew comfortable working  with it.<br />
<font color="#0000ff"><br />
The features that i like?</font><br />
Creating a complex formula in Excel? Click on &#8220;Formulas&#8221; and pick your poison —  all broken down by type.</p>
<p><font color="#0000ff">It&#8217;s also dynamic:</font>  When handling a photo in Word, the Ribbon presents the tools suitable for that  task. No more clicking on the &#8220;View&#8221; menu, choosing &#8220;Toolbars&#8221; and then figuring  out which of the tiny icons might be of use.</p>
<p><span id="intelliTXT"><strong><font size="4" color="#0000ff"> <span class="highlight"><u>The bottom line:</u> </span></font></strong>Overall,  Microsoft Office Standard 2007 is a worthy upgrade if you need to make  sleeker-looking documents and presentations to share with others, and Outlook is  better than ever, but you can stick to your current software if you don&#8217;t feel  that it lacks anything.</span></p>
<p><font face="Arial Unicode MS"> </font>
</p>
:) IAintABlonde.com<p class="akst_link"><a href="http://www.iaintablonde.com/?p=47&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_47" 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/2007/02/09/a-hands-on-with-microsoft-office-2007/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
