 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Cell Automated Population using Excel macro</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/</link>
	<description></description>
	<lastBuildDate>Sun, 19 May 2013 00:45:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: rechil</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-85013</link>
		<dc:creator>rechil</dc:creator>
		<pubDate>Wed, 08 Dec 2010 11:35:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-85013</guid>
		<description><![CDATA[Oh, I am sorry, I forgot to mention the link here !]]></description>
		<content:encoded><![CDATA[<p>Oh, I am sorry, I forgot to mention the link here !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84963</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Tue, 07 Dec 2010 14:14:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-84963</guid>
		<description><![CDATA[&quot;&lt;i&gt;I mentioned in Answer Wiki, this is a sample code and u have to change as per ur requirements&lt;/i&gt;&quot;

But the code needed to be replaced entirely.

Google will not always offer a solution for specific situations.  Sometimes, if you really want to help, you have to build a solution and not just google it.

You took the code you posted from here:

&lt;a href=&quot;http://www.computing.net/answers/office/auto-populate-cells-from-bottom-to-top-vba/11779.html&quot;&gt;Auto Populate cells from bottom to top vba&lt;/a&gt;

But, the description of the problem that code solves is this:

&quot;&lt;i&gt;HiGuys
i would like write a vba script to fills the blank cells with the value of the cell directly below it starting from top to bottom with a loop&lt;/i&gt;&quot;

Which is quite different from what Eron09 asked, isn&#039;t it ?]]></description>
		<content:encoded><![CDATA[<p>&#8220;<i>I mentioned in Answer Wiki, this is a sample code and u have to change as per ur requirements</i>&#8221;</p>
<p>But the code needed to be replaced entirely.</p>
<p>Google will not always offer a solution for specific situations.  Sometimes, if you really want to help, you have to build a solution and not just google it.</p>
<p>You took the code you posted from here:</p>
<p><a href="http://www.computing.net/answers/office/auto-populate-cells-from-bottom-to-top-vba/11779.html">Auto Populate cells from bottom to top vba</a></p>
<p>But, the description of the problem that code solves is this:</p>
<p>&#8220;<i>HiGuys<br />
i would like write a vba script to fills the blank cells with the value of the cell directly below it starting from top to bottom with a loop</i>&#8221;</p>
<p>Which is quite different from what Eron09 asked, isn&#8217;t it ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rechil</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84961</link>
		<dc:creator>rechil</dc:creator>
		<pubDate>Tue, 07 Dec 2010 09:23:24 +0000</pubDate>
		<guid isPermaLink="false">#comment-84961</guid>
		<description><![CDATA[I mentioned in Answer Wiki, this is a sample code and u have to change as per ur requirements. This is not the exact one that u want, but it helps u to clear ur concept that u want. Because it is not possible to guess accurately that what the question asker actual wants. Also I mentioned in &quot;NOTES&quot; that how to change according to the query.]]></description>
		<content:encoded><![CDATA[<p>I mentioned in Answer Wiki, this is a sample code and u have to change as per ur requirements. This is not the exact one that u want, but it helps u to clear ur concept that u want. Because it is not possible to guess accurately that what the question asker actual wants. Also I mentioned in &#8220;NOTES&#8221; that how to change according to the query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84916</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Mon, 06 Dec 2010 22:11:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-84916</guid>
		<description><![CDATA[Sorry, I missed the last line.  This is the complete code:

&lt;pre&gt;Private Sub Worksheet_Change(ByVal Target As Range)
Dim myRow As Integer
If Left(Target.Address, 2) = &quot;$E&quot; Then
    myRow = Target.row
    Range(Replace(&quot;a0:d0&quot;, &quot;0&quot;, myRow)).Value = Range(Replace(&quot;a0:d0&quot;, &quot;0&quot;, myRow - 2)).Value
End If
End Sub&lt;/pre&gt;

In the Visual Basic editor, right click on &quot;Sheet1&quot;, select &quot;View code&quot;, and put this code in there.  

Let us know how it goes.]]></description>
		<content:encoded><![CDATA[<p>Sorry, I missed the last line.  This is the complete code:</p>
<pre>Private Sub Worksheet_Change(ByVal Target As Range)
Dim myRow As Integer
If Left(Target.Address, 2) = "$E" Then
    myRow = Target.row
    Range(Replace("a0:d0", "0", myRow)).Value = Range(Replace("a0:d0", "0", myRow - 2)).Value
End If
End Sub</pre>
<p>In the Visual Basic editor, right click on &#8220;Sheet1&#8243;, select &#8220;View code&#8221;, and put this code in there.  </p>
<p>Let us know how it goes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84915</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Mon, 06 Dec 2010 22:05:48 +0000</pubDate>
		<guid isPermaLink="false">#comment-84915</guid>
		<description><![CDATA[Hi Eron09.

Try this code:

&lt;pre&gt;Private Sub Worksheet_Change(ByVal Target As Range)
Dim myRow As Integer
If Left(Target.Address, 2) = &quot;$E&quot; Then
    myRow = Target.row
    Range(Replace(&quot;a0:d0&quot;, &quot;0&quot;, myRow)).Value = Range(Replace(&quot;a0:d0&quot;, &quot;0&quot;, myRow - 2)).Value
End If&lt;/pre&gt;

This is what it does:  When you change the value in Cell E6 it will copy the contents of cells A4:D4 to A6:D6.  Actually it will do it when you modify any cell in column E.  If you write something in E7 it will copy the values from A5:D5 to A7:D7, and so on.

Feel free to ask for clarification or to add any comments if needed.]]></description>
		<content:encoded><![CDATA[<p>Hi Eron09.</p>
<p>Try this code:</p>
<pre>Private Sub Worksheet_Change(ByVal Target As Range)
Dim myRow As Integer
If Left(Target.Address, 2) = "$E" Then
    myRow = Target.row
    Range(Replace("a0:d0", "0", myRow)).Value = Range(Replace("a0:d0", "0", myRow - 2)).Value
End If</pre>
<p>This is what it does:  When you change the value in Cell E6 it will copy the contents of cells A4:D4 to A6:D6.  Actually it will do it when you modify any cell in column E.  If you write something in E7 it will copy the values from A5:D5 to A7:D7, and so on.</p>
<p>Feel free to ask for clarification or to add any comments if needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eron09</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84894</link>
		<dc:creator>eron09</dc:creator>
		<pubDate>Mon, 06 Dec 2010 15:03:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-84894</guid>
		<description><![CDATA[Thank you so much Carlosdl!]]></description>
		<content:encoded><![CDATA[<p>Thank you so much Carlosdl!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84891</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Mon, 06 Dec 2010 14:40:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-84891</guid>
		<description><![CDATA[Hi Eron09.

Rechil didn&#039;t mention it but that code is NOT going to do what you want.  It seems to be just an example of another operation that could be similar to what you need.

I&#039;ll take a look into it a little later, and will post some code.]]></description>
		<content:encoded><![CDATA[<p>Hi Eron09.</p>
<p>Rechil didn&#8217;t mention it but that code is NOT going to do what you want.  It seems to be just an example of another operation that could be similar to what you need.</p>
<p>I&#8217;ll take a look into it a little later, and will post some code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eron09</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84889</link>
		<dc:creator>eron09</dc:creator>
		<pubDate>Mon, 06 Dec 2010 14:31:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-84889</guid>
		<description><![CDATA[it did&#039;nt work for me.]]></description>
		<content:encoded><![CDATA[<p>it did&#8217;nt work for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eron09</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cell-autom-populate-using-macro/#comment-84883</link>
		<dc:creator>eron09</dc:creator>
		<pubDate>Mon, 06 Dec 2010 09:25:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-84883</guid>
		<description><![CDATA[Hi,

I&#039;m having an error...

Compile error:
Invalid Next control variable reference.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m having an error&#8230;</p>
<p>Compile error:<br />
Invalid Next control variable reference.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/8 queries in 0.035 seconds using memcached
Object Caching 381/382 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 01:09:01 -->