<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.0" -->
<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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:dtvmedia="http://participatoryculture.org/RSSModules/dtv/1.0"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Tech Academy 2009</title>
	<link>http://titania.stockton.edu/techacad09</link>
	<description>Just another Titania weblog</description>
	<pubDate>Fri, 06 Nov 2009 14:54:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.0</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/7.7" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>robert.heinrich@stockton.edu ()</managingEditor>
		<webMaster>robert.heinrich@stockton.edu</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Just another Titania weblog</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>robert.heinrich@stockton.edu</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://titania.stockton.edu/techacad09/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://titania.stockton.edu/techacad09/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Tech Academy 2009</title>
			<link>http://titania.stockton.edu/techacad09</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>how to assign a macro to an option button in excel</title>
		<link>http://titania.stockton.edu/techacad09/2009/06/24/how-to-assign-a-macro-to-an-option-button-in-excel/</link>
		<comments>http://titania.stockton.edu/techacad09/2009/06/24/how-to-assign-a-macro-to-an-option-button-in-excel/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 19:06:49 +0000</pubDate>
		<dc:creator>heinricb</dc:creator>
		
		<category>Excel Tips</category>

		<guid isPermaLink="false">http://titania.stockton.edu/techacad09/2009/06/24/how-to-assign-a-macro-to-an-option-button-in-excel/</guid>
		<description><![CDATA[http://support.microsoft.com/kb/141689

Thanks,Bob

]]></description>
			<content:encoded><![CDATA[http://support.microsoft.com/kb/141689

Thanks,Bob

]]></content:encoded>
			<wfw:commentRss>http://titania.stockton.edu/techacad09/2009/06/24/how-to-assign-a-macro-to-an-option-button-in-excel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hiding Excel Rows when Columns are Null or Zero</title>
		<link>http://titania.stockton.edu/techacad09/2009/06/24/hiding-excel-rows-when-columns-are-null-or-zero/</link>
		<comments>http://titania.stockton.edu/techacad09/2009/06/24/hiding-excel-rows-when-columns-are-null-or-zero/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 19:00:17 +0000</pubDate>
		<dc:creator>heinricb</dc:creator>
		
		<category>Excel Tips</category>

		<guid isPermaLink="false">http://titania.stockton.edu/techacad09/2009/06/24/hiding-excel-rows-when-columns-are-null-or-zero/</guid>
		<description><![CDATA[Add the following macros and set the range as needed.
Sub HideZeroRows()
Dim r As Range, cell As Range
Set r = Range(&#8221;C7:C8&#824 
For Each cell In r
If cell = 0 And cell.Offset(0, 1) = 0 And _
 cell.Offset(0, 2) = 0 Then
 cell.EntireRow.Hidden = True
Else
 cell.EntireRow.Hidden = False
End If
Next
End Sub
Sub UnHiderows()
Rows.Hidden = False
End Sub
Taken From
http://en.allexperts.com/q/Excel-1059/2009/5/Hiding-Rows-Zero-Values-1.htm

]]></description>
			<content:encoded><![CDATA[Add the following macros and set the range as needed.
Sub HideZeroRows()
Dim r As Range, cell As Range
Set r = Range(&#8221;C7:C8&#824 
For Each cell In r
If cell = 0 And cell.Offset(0, 1) = 0 And _
 cell.Offset(0, 2) = 0 Then
 cell.EntireRow.Hidden = True
Else
 cell.EntireRow.Hidden = False
End If
Next
End Sub
Sub UnHiderows()
Rows.Hidden = False
End Sub
Taken From
http://en.allexperts.com/q/Excel-1059/2009/5/Hiding-Rows-Zero-Values-1.htm

]]></content:encoded>
			<wfw:commentRss>http://titania.stockton.edu/techacad09/2009/06/24/hiding-excel-rows-when-columns-are-null-or-zero/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
