<?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>Bridge to Nova &#187; MS Office</title>
	<atom:link href="http://www.bridgetonova.com/category/ms-office/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bridgetonova.com</link>
	<description>Keep Your Mind Wide Open</description>
	<lastBuildDate>Sat, 05 Dec 2009 04:14:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to delete every other row in Excel</title>
		<link>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html</link>
		<comments>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html#comments</comments>
		<pubDate>Sat, 04 Jul 2009 06:03:18 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[MS Office]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html</guid>
		<description><![CDATA[Have you ever looking for option to delete every odd or even rows in Excel? Looking through menu after menu, hoping there’s some option hidden somewhere? Well, the bad news is that there’s no built-in function as of Excel 2007. You need to use some marco to do just that. Here’s the procedure. This procedure [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7697226414384593";
//468x60, btn home page
google_ad_slot = "3068992652";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p>Have you ever looking for option to delete every odd or even rows in Excel? Looking through menu after menu, hoping there’s some option hidden somewhere? </p>
<p>Well, the bad news is that there’s no built-in function as of Excel 2007. You need to use some marco to do just that. </p>
<p>Here’s the procedure. This procedure applies to all Excel versions from 97 to 2007, however I’ll provide screenshot using Excel 2007.</p>
<p>&#160;</p>
<ul>
<li>Open your Excel file. </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/samplesheet.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="sample sheet" border="0" alt="sample sheet" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/samplesheet_thumb.jpg" width="204" height="295" /></a> </p>
<ul>
<li>In Excel 2007, Go to Developer tab, click Visual Basic. (All other Excel versions, go to Tools menu -&gt; Marco –&gt; Visual Basic Editor) </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/excel2007developertab.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="excel 2007 developer tab" border="0" alt="excel 2007 developer tab" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/excel2007developertab_thumb.jpg" width="504" height="111" /></a> </p>
<p>&#160;</p>
<ul>
<li>Then in Visual Basic window, Insert Menu –&gt; Module </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/vbinsertmenu.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="vb insert menu" border="0" alt="vb insert menu" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/vbinsertmenu_thumb.png" width="384" height="181" /></a>&#160; </p>
<ul>
<li>After that copy and paste the following code into the module window. </li>
</ul>
<blockquote><pre>Sub Delete_Every_Other_Row()

   ' Dimension variables.
   Y = False              ' Change this to True if you want to
                          ' delete rows 1, 3, 5, and so on.
   I = 1
   Set xRng = Selection

   ' Loop once for every row in the selection.
   For xCounter = 1 To xRng.Rows.Count

       ' If Y is True, then...
       If Y = True Then

           ' ...delete an entire row of cells.
           xRng.Cells(I).EntireRow.Delete

       ' Otherwise...
       Else

           ' ...increment I by one so we can cycle through range.
           I = I + 1

       End If

       ' If Y is True, make it False; if Y is False, make it True.
       Y = Not Y

   Next xCounter

End Sub</pre>
</blockquote>
<ul>
<li>Go back to your excel workbook,&#160; Select the Cells that you want for alternative rows to delete. <em>Note : It is important to select the cells, if you select the whole column, Excel will most likely hang when you run Macro.</em> </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/selectcell.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="select cell" border="0" alt="select cell" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/selectcell_thumb.png" width="186" height="244" /></a> </p>
<p>&#160;</p>
<ul>
<li>After that, click Marcos under Developer tab in Excel 2007. (All other excel versions, Tools menu –&gt; Marcos ) You should see the dialog box as follow. Click on Run. </li>
</ul>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2009/07/marcopopup.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="marco popup" border="0" alt="marco popup" src="http://www.bridgetonova.com/wp-content/uploads/2009/07/marcopopup_thumb.png" width="384" height="384" /></a> </p>
<p>Bravo! That’s it! Hopefully Excel 2010 will have built-in function for this.&#160; </p>
<p>&#160;</p>
</p>
<p>Source : <a href="http://support.microsoft.com/kb/213610">Microsoft</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make your Document as Final in Word 2007</title>
		<link>http://www.bridgetonova.com/2007/12/how-to-make-your-document-as-final-in.html</link>
		<comments>http://www.bridgetonova.com/2007/12/how-to-make-your-document-as-final-in.html#comments</comments>
		<pubDate>Fri, 28 Dec 2007 12:54:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=264</guid>
		<description><![CDATA[I love Windows Vista and Office 2007. No matter what other people are saying, Microsoft introduces a lot of great new features. Do you know that in Word 2007 you can mark your document as final so that other people could know that no editing should be done? Here&#8217;s the step to do that. Yes [...]]]></description>
			<content:encoded><![CDATA[<p>I love Windows Vista and Office 2007. No matter what other people are saying, Microsoft introduces a lot of great new features.   </p>
<p>Do you know that in Word 2007 you can mark your document as final so that other people could know that no editing should be done?   </p>
<p>Here&#8217;s the step to do that. Yes it&#8217;s easy!   </p>
<ul>
<li>First click on Office button and then go to Prepare. </li>
<li>After that click Mark as Final. </li>
</ul>
<p><a href="http://bp0.blogger.com/_gi_LZGbBtrU/R3TyRc5xpbI/AAAAAAAAAO0/o96plAjnJPo/s1600-h/mark+final.jpg"><img style="display:block;cursor:pointer;text-align:center;margin:0 auto 10px;" alt="mark as final for word documents" src="http://bp0.blogger.com/_gi_LZGbBtrU/R3TyRc5xpbI/AAAAAAAAAO0/o96plAjnJPo/s400/mark+final.jpg" border="0" /></a>   </p>
<p> 
<ul>
<li>You will see the following dialog box telling you that the document will be marked as final and saved. Just click OK. </li>
</ul>
<p><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R3TzEs5xpcI/AAAAAAAAAO8/IjnFtHXXISI/s1600-h/maf+dialog.jpg"><img style="display:block;cursor:pointer;text-align:center;margin:0 auto 10px;" alt="" src="http://bp1.blogger.com/_gi_LZGbBtrU/R3TzEs5xpcI/AAAAAAAAAO8/IjnFtHXXISI/s400/maf+dialog.jpg" border="0" /></a>   </p>
<ul>
<li>After that you will see another dialog box telling you more about Mark as Final info. Just click OK. </li>
</ul>
<p><a href="http://bp3.blogger.com/_gi_LZGbBtrU/R3TzoM5xpdI/AAAAAAAAAPE/wqTQmNbWANY/s1600-h/maf+info.jpg"><img style="display:block;cursor:pointer;text-align:center;margin:0 auto 10px;" alt="" src="http://bp3.blogger.com/_gi_LZGbBtrU/R3TzoM5xpdI/AAAAAAAAAPE/wqTQmNbWANY/s400/maf+info.jpg" border="0" /></a>   </p>
<p>Now your document has been marked as final. No more accidental editing could occur and your collegues could also aware that they shouldn&#8217;t edit the document anymore.   </p>
<p>You can differentiate normal document and mark as final document easily as in Mark as Final document, you couldn&#8217;t type or edit anything. Also, if this any help, the Word Status bar also telling you as follow.   </p>
<p><a href="http://bp3.blogger.com/_gi_LZGbBtrU/R3T0mM5xpeI/AAAAAAAAAPM/3ZKQ2jnnYGM/s1600-h/maf+status.jpg"><img style="display:block;cursor:pointer;text-align:center;margin:0 auto 10px;" alt="" src="http://bp3.blogger.com/_gi_LZGbBtrU/R3T0mM5xpeI/AAAAAAAAAPM/3ZKQ2jnnYGM/s400/maf+status.jpg" border="0" /></a>   </p>
<p>I hope this tip could help you make more productivity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/how-to-make-your-document-as-final-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open docx files without Office 2007</title>
		<link>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office.html</link>
		<comments>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office.html#comments</comments>
		<pubDate>Fri, 23 Nov 2007 05:17:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=225</guid>
		<description><![CDATA[Microsoft has introduced a new file format called the Microsoft Open Office XML Format (.docx) with their latest office suite, Office 2007. But most people are still using Office 2003. The big problem is that this new format is incompatible with older Microsoft Office versions or any other Office alternatives such as Open Office or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R0W7iIlumOI/AAAAAAAAAKk/cnClT7BvF04/s1600-h/office07.jpg"><img src="http://bp1.blogger.com/_gi_LZGbBtrU/R0W7iIlumOI/AAAAAAAAAKk/cnClT7BvF04/s400/office07.jpg" style="margin: 0pt auto 10px; display: block; text-align: center" border="0" /></a><br />
Microsoft has introduced a new file format called the Microsoft Open Office XML Format (.docx) with their latest office suite, Office 2007.</p>
<p>But most people are still using Office 2003. The big problem is that this new format is incompatible with older Microsoft Office versions or any other Office alternatives such as Open Office or Lotus, StarOffice, NeoOffice. Before anyone blame Microsoft, they have already created a program called <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en">Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats</a>. After you&#8217;ve downloaded this program, you can easily convert new Office format such as .docx to old Office format .doc and vice versa.</p>
<p>Or if you don&#8217;t want to install any program, you can try <a href="http://docx-converter.com/">.docx online converter</a>. Hope this advice help your incompatibility headache.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
