 




<?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: What is the Excel VBScript for the following&#8230;</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-excel-vbscript-for-the-following/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-excel-vbscript-for-the-following/</link>
	<description></description>
	<lastBuildDate>Sat, 25 May 2013 00:24:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: sbelectric</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/what-is-the-excel-vbscript-for-the-following/#comment-62161</link>
		<dc:creator>sbelectric</dc:creator>
		<pubDate>Mon, 13 Apr 2009 05:37:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-62161</guid>
		<description><![CDATA[This is pretty simple macro to code but I am not sure why you want to do this way.  One of the cardinal rules in Information Processing and Auditing is to preserve the input data.  This violates the rule in the sense that the initial B1 and C1 data are being changed.
Twlp123 has correctly suggested using Sheet 2. 

Anyway, if you want to write a macro (say for 5 rows) use the following: 
Sub Mult()
For I = 1 to 5
For J = 2 to 3
  Cells(I,J) = Cells (I,1) * Cells(I,J)
Next J
Next I
End Sub]]></description>
		<content:encoded><![CDATA[<p>This is pretty simple macro to code but I am not sure why you want to do this way.  One of the cardinal rules in Information Processing and Auditing is to preserve the input data.  This violates the rule in the sense that the initial B1 and C1 data are being changed.<br />
Twlp123 has correctly suggested using Sheet 2. </p>
<p>Anyway, if you want to write a macro (say for 5 rows) use the following:<br />
Sub Mult()<br />
For I = 1 to 5<br />
For J = 2 to 3<br />
  Cells(I,J) = Cells (I,1) * Cells(I,J)<br />
Next J<br />
Next I<br />
End Sub</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 6/8 queries in 0.016 seconds using memcached
Object Caching 269/270 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-25 03:54:11 -->