<?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 for Automate Excel</title>
	<atom:link href="http://www.automateexcel.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Hundreds of Excel Tips &#38; Tricks</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:03:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on VLOOKUP Function Example by Pranab</title>
		<link>http://www.automateexcel.com/2004/08/15/excel_formula_vlookup_function_example/comment-page-1/#comment-1465</link>
		<dc:creator>Pranab</dc:creator>
		<pubDate>Wed, 10 Mar 2010 07:03:23 +0000</pubDate>
		<guid isPermaLink="false">#comment-1465</guid>
		<description>very very great site, its concept so clear that any one can learn anththing in excel
very ver thanks</description>
		<content:encoded><![CDATA[<p>very very great site, its concept so clear that any one can learn anththing in excel<br />
very ver thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Cut, Copy, Paste from a Macro by Norman</title>
		<link>http://www.automateexcel.com/2004/08/18/excel_cut_copy_paste_from_a_macro/comment-page-1/#comment-1464</link>
		<dc:creator>Norman</dc:creator>
		<pubDate>Mon, 08 Mar 2010 17:14:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-1464</guid>
		<description>Is there a way, using an input form, to tell the macro where to start pasting information?  For example:

The typical command is: Range(“B2″).Select
I want to be able to tell the macro a different cell to copy to starting somewhere other than &quot;B2&quot;.  Maybe B3 or B4.</description>
		<content:encoded><![CDATA[<p>Is there a way, using an input form, to tell the macro where to start pasting information?  For example:</p>
<p>The typical command is: Range(“B2″).Select<br />
I want to be able to tell the macro a different cell to copy to starting somewhere other than &#8220;B2&#8243;.  Maybe B3 or B4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Find Text in a String (instr) by Nev</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_find_text_in_a_string_instr/comment-page-1/#comment-1461</link>
		<dc:creator>Nev</dc:creator>
		<pubDate>Sat, 06 Mar 2010 14:17:03 +0000</pubDate>
		<guid isPermaLink="false">#comment-1461</guid>
		<description>good test dajomu,
the author clearly needs to correct his tutorial

abc,a returns 1
abc,b returns 2
abc,c, returns 3</description>
		<content:encoded><![CDATA[<p>good test dajomu,<br />
the author clearly needs to correct his tutorial</p>
<p>abc,a returns 1<br />
abc,b returns 2<br />
abc,c, returns 3</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Force Proper, Upper, or Lower case automatically by John</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_force_proper_upper_or_lower_ca/comment-page-1/#comment-1458</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 04 Mar 2010 14:11:31 +0000</pubDate>
		<guid isPermaLink="false">#comment-1458</guid>
		<description>I wonder if it is possible to just do according to the following

range(&quot;a1&quot;).text(uppercase)=true or something like that??</description>
		<content:encoded><![CDATA[<p>I wonder if it is possible to just do according to the following</p>
<p>range(&#8220;a1&#8243;).text(uppercase)=true or something like that??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Find Text in a String (instr) by Prinny</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_find_text_in_a_string_instr/comment-page-1/#comment-1456</link>
		<dc:creator>Prinny</dc:creator>
		<pubDate>Thu, 04 Mar 2010 00:43:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-1456</guid>
		<description>inst() returns the first position in the string where the string matches.
 Instr(“abc”,”b”)  &#039;Returns 2, b is the second letter.
 Instr(“abcbcab”, “b”) &#039;Returns 2
 Instr(“abcbcabf”, “f”) &#039;Returns 8

When no value is found it returns 0

If you use multiple characters aka &quot;String&quot;, it will tell where the first position begins.

Ie. Instr(&quot;12345678901234567890&quot;, &quot;456&quot;) &#039;returns 4

If you are lookin for every instance? you will need be make loops to keep checking until 0 is found.

Instr(&quot;starting # position&quot;, &quot;original text&quot;, &quot;search text&quot;)</description>
		<content:encoded><![CDATA[<p>inst() returns the first position in the string where the string matches.<br />
 Instr(“abc”,”b”)  &#8216;Returns 2, b is the second letter.<br />
 Instr(“abcbcab”, “b”) &#8216;Returns 2<br />
 Instr(“abcbcabf”, “f”) &#8216;Returns 8</p>
<p>When no value is found it returns 0</p>
<p>If you use multiple characters aka &#8220;String&#8221;, it will tell where the first position begins.</p>
<p>Ie. Instr(&#8220;12345678901234567890&#8243;, &#8220;456&#8243;) &#8216;returns 4</p>
<p>If you are lookin for every instance? you will need be make loops to keep checking until 0 is found.</p>
<p>Instr(&#8220;starting # position&#8221;, &#8220;original text&#8221;, &#8220;search text&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Find Text in a String (instr) by Richard</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_find_text_in_a_string_instr/comment-page-1/#comment-1454</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 02 Mar 2010 14:00:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-1454</guid>
		<description>No. MsgBox Instr(&quot;abc&quot;, &quot;b&quot;) returns 2.</description>
		<content:encoded><![CDATA[<p>No. MsgBox Instr(&#8220;abc&#8221;, &#8220;b&#8221;) returns 2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Use Format Painter Multiple Times by Lee</title>
		<link>http://www.automateexcel.com/2004/12/06/excel_use_format_painter_multiple_times/comment-page-1/#comment-1453</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Tue, 23 Feb 2010 15:18:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-1453</guid>
		<description>I appreciate the tips and shortcuts.

I&#039;m trying to find how to copy from one cell which has cell value conditional formatting and formula based conditional formatting and paste or paint the formatting to other cells and maintain the integrity of the formula based conditional formatting.  For instance, I want to display a color change in each cell based on its value being greater than 23 and I want to change the border color if there are more than 3 blank cells from which the sum is taken.  I can format the one cell, but when I copy and special paste or paint the formatting, each cell is formatted based on the original formula and not the formula of respective cells.  More specifically, I have number values in cells F1 to F9, F10=sum(F1:F9), if(F10&gt;23) format font &quot;Red&quot;, if (countblank(F1:F9)&gt;=4 border color = &quot;Orange&quot;.  When I paste or paint the formatting from F10 to cells G10 to BI10, the conditional formatting automatically groups and formats cells F10 to BI10 based on the single formula (countblank(F1:F9).  How can I paste or paint so that each cell is conditionally formatted based on a formula respective to it (i.e.  BI10 should be based on if (countblank(BI1:BI9)?

This comes up rather often in various spreadsheets and it&#039;s very tedious to set a separate conditional formatting rule for each cell.  I appreciate your help.
Thanks,</description>
		<content:encoded><![CDATA[<p>I appreciate the tips and shortcuts.</p>
<p>I&#8217;m trying to find how to copy from one cell which has cell value conditional formatting and formula based conditional formatting and paste or paint the formatting to other cells and maintain the integrity of the formula based conditional formatting.  For instance, I want to display a color change in each cell based on its value being greater than 23 and I want to change the border color if there are more than 3 blank cells from which the sum is taken.  I can format the one cell, but when I copy and special paste or paint the formatting, each cell is formatted based on the original formula and not the formula of respective cells.  More specifically, I have number values in cells F1 to F9, F10=sum(F1:F9), if(F10&gt;23) format font &#8220;Red&#8221;, if (countblank(F1:F9)&gt;=4 border color = &#8220;Orange&#8221;.  When I paste or paint the formatting from F10 to cells G10 to BI10, the conditional formatting automatically groups and formats cells F10 to BI10 based on the single formula (countblank(F1:F9).  How can I paste or paint so that each cell is conditionally formatted based on a formula respective to it (i.e.  BI10 should be based on if (countblank(BI1:BI9)?</p>
<p>This comes up rather often in various spreadsheets and it&#8217;s very tedious to set a separate conditional formatting rule for each cell.  I appreciate your help.<br />
Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Two Dimensional VLOOKUP by Kevin</title>
		<link>http://www.automateexcel.com/2008/09/06/two-dimensional-vlookup/comment-page-1/#comment-1452</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Sat, 20 Feb 2010 13:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.automateexcel.com/?p=856#comment-1452</guid>
		<description>This was a great help and you did a good job at explaining the index and match function.  I&#039;m currently learning from the book, &quot;Mastering Excel,&quot; by James Gips and your explanation is much easier to follow.</description>
		<content:encoded><![CDATA[<p>This was a great help and you did a good job at explaining the index and match function.  I&#8217;m currently learning from the book, &#8220;Mastering Excel,&#8221; by James Gips and your explanation is much easier to follow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Select All Worksheet Tabs by Vishwas Rathi</title>
		<link>http://www.automateexcel.com/2005/02/15/excel_select_all_worksheet_tabs/comment-page-1/#comment-1451</link>
		<dc:creator>Vishwas Rathi</dc:creator>
		<pubDate>Fri, 19 Feb 2010 11:52:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-1451</guid>
		<description>Didnt realise selecting all worksheets would be so simple. but it did the trick. I have excel file with 270 worksheets. All i wanted was to make the zoom %age 80 on all and obviously cant do that on each one separately, so visited this page and wow..... 

Thanks very much.</description>
		<content:encoded><![CDATA[<p>Didnt realise selecting all worksheets would be so simple. but it did the trick. I have excel file with 270 worksheets. All i wanted was to make the zoom %age 80 on all and obviously cant do that on each one separately, so visited this page and wow&#8230;.. </p>
<p>Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VBA: Consume Soap Web Services by Dharnendra</title>
		<link>http://www.automateexcel.com/2004/11/14/excel_vba_consume_web_services/comment-page-1/#comment-1450</link>
		<dc:creator>Dharnendra</dc:creator>
		<pubDate>Fri, 19 Feb 2010 09:37:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-1450</guid>
		<description>Hi Mark,

If i wann to provide special credentials to call the web service, how should i do ?</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>If i wann to provide special credentials to call the web service, how should i do ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.239 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-19 03:28:49 -->
