<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vb6world</title>
	<atom:link href="http://vb6world.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vb6world.wordpress.com</link>
	<description>Visual Basic 6 world</description>
	<lastBuildDate>Tue, 11 Nov 2008 11:17:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vb6world.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vb6world</title>
		<link>http://vb6world.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vb6world.wordpress.com/osd.xml" title="Vb6world" />
	<atom:link rel='hub' href='http://vb6world.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Four simpe Excel User Functions to move the current cell around the sheet</title>
		<link>http://vb6world.wordpress.com/2008/11/11/four-simpe-excel-user-functions-to-move-the-current-cell-around-the-sheet/</link>
		<comments>http://vb6world.wordpress.com/2008/11/11/four-simpe-excel-user-functions-to-move-the-current-cell-around-the-sheet/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 11:09:31 +0000</pubDate>
		<dc:creator>vb6world</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://vb6world.wordpress.com/?p=3</guid>
		<description><![CDATA[Four simple functions to move the current selection right, left, up and down. Sub MoveRight(Units As Long) On Error Resume Next ActiveCell.Offset(0, Units).Activate End Sub Sub MoveLeft(Units As Long) On Error Resume Next ActiveCell.Offset(0, -Units).Activate End Sub Sub MoveUp(Units As Long) On Error Resume Next ActiveCell.Offset(-Units, 0).Activate End Sub Sub MoveDown(Units As Long) On Error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vb6world.wordpress.com&amp;blog=5479218&amp;post=3&amp;subd=vb6world&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Four simple functions to move the current selection right, left, up and down.</p>
<pre style="color:#000020;background:#f6f8ff;"><span style="color:#200080;font-weight:bold;">Sub</span> MoveRight<span style="color:#308080;">(</span>Units <span style="color:#200080;font-weight:bold;">As</span> <span style="color:#200080;font-weight:bold;">Long</span><span style="color:#308080;">)</span>
<span style="color:#200080;font-weight:bold;">On</span> <span style="color:#200080;font-weight:bold;">Error</span> <span style="color:#200080;font-weight:bold;">Resume</span> <span style="color:#200080;font-weight:bold;">Next</span>
ActiveCell<span style="color:#008c00;">.</span>Offset<span style="color:#308080;">(</span><span style="color:#008c00;">0</span><span style="color:#308080;">,</span> Units<span style="color:#308080;">)</span><span style="color:#308080;">.</span>Activate
<span style="color:#200080;font-weight:bold;">End</span> <span style="color:#200080;font-weight:bold;">Sub</span></pre>
<pre style="color:#000020;background:#f6f8ff;">
<span style="color:#200080;font-weight:bold;">Sub</span> MoveLeft<span style="color:#308080;">(</span>Units <span style="color:#200080;font-weight:bold;">As</span> <span style="color:#200080;font-weight:bold;">Long</span><span style="color:#308080;">)</span>
<span style="color:#200080;font-weight:bold;">On</span> <span style="color:#200080;font-weight:bold;">Error</span> <span style="color:#200080;font-weight:bold;">Resume</span> <span style="color:#200080;font-weight:bold;">Next</span>
ActiveCell<span style="color:#008c00;">.</span>Offset<span style="color:#308080;">(</span><span style="color:#008c00;">0</span><span style="color:#308080;">,</span> <span style="color:#308080;">-</span>Units<span style="color:#308080;">)</span><span style="color:#308080;">.</span>Activate
<span style="color:#200080;font-weight:bold;">End</span> <span style="color:#200080;font-weight:bold;">Sub</span></pre>
<pre style="color:#000020;background:#f6f8ff;">
<span style="color:#200080;font-weight:bold;">Sub</span> MoveUp<span style="color:#308080;">(</span>Units <span style="color:#200080;font-weight:bold;">As</span> <span style="color:#200080;font-weight:bold;">Long</span><span style="color:#308080;">)</span>
<span style="color:#200080;font-weight:bold;">On</span> <span style="color:#200080;font-weight:bold;">Error</span> <span style="color:#200080;font-weight:bold;">Resume</span> <span style="color:#200080;font-weight:bold;">Next</span>
ActiveCell<span style="color:#008c00;">.</span>Offset<span style="color:#308080;">(</span><span style="color:#308080;">-</span>Units<span style="color:#308080;">,</span> <span style="color:#008c00;">0</span><span style="color:#308080;">)</span><span style="color:#308080;">.</span>Activate
<span style="color:#200080;font-weight:bold;">End</span> <span style="color:#200080;font-weight:bold;">Sub</span></pre>
<pre style="color:#000020;background:#f6f8ff;"><span style="color:#200080;font-weight:bold;">Sub</span> MoveDown<span style="color:#308080;">(</span>Units <span style="color:#200080;font-weight:bold;">As</span> <span style="color:#200080;font-weight:bold;">Long</span><span style="color:#308080;">)</span>
<span style="color:#200080;font-weight:bold;">On</span> <span style="color:#200080;font-weight:bold;">Error</span> <span style="color:#200080;font-weight:bold;">Resume</span> <span style="color:#200080;font-weight:bold;">Next</span>
ActiveCell<span style="color:#008c00;">.</span>Offset<span style="color:#308080;">(</span>Units<span style="color:#308080;">,</span> <span style="color:#008c00;">0</span><span style="color:#308080;">)</span><span style="color:#308080;">.</span>Activate
<span style="color:#200080;font-weight:bold;">End</span> <span style="color:#200080;font-weight:bold;">Sub</span></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vb6world.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vb6world.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vb6world.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vb6world.wordpress.com&amp;blog=5479218&amp;post=3&amp;subd=vb6world&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vb6world.wordpress.com/2008/11/11/four-simpe-excel-user-functions-to-move-the-current-cell-around-the-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4e37153ae5f4a302ace6d00e924171f9?s=96&#38;d=identicon" medium="image">
			<media:title type="html">vb6world</media:title>
		</media:content>
	</item>
	</channel>
</rss>
