 




<?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: Is there a standard formula for counting highlighted cells in Excel 2007?</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/</link>
	<description></description>
	<lastBuildDate>Sun, 26 May 2013 01:40:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: excelnoob</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/#comment-108089</link>
		<dc:creator>excelnoob</dc:creator>
		<pubDate>Wed, 06 Jun 2012 17:11:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-108089</guid>
		<description><![CDATA[I used Rechill&#039;s code and it worked beautifully, accept that when I highlighted somethign else it wouldn&#039;t automatically update. So I don&#039;t know how to fix that.

However that was yesterday. Today i opened up the spreadsheet and the function no longer worked... I don&#039;t know much about VBA so I dont know what went wrong]]></description>
		<content:encoded><![CDATA[<p>I used Rechill&#8217;s code and it worked beautifully, accept that when I highlighted somethign else it wouldn&#8217;t automatically update. So I don&#8217;t know how to fix that.</p>
<p>However that was yesterday. Today i opened up the spreadsheet and the function no longer worked&#8230; I don&#8217;t know much about VBA so I dont know what went wrong</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rechil</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/#comment-87483</link>
		<dc:creator>rechil</dc:creator>
		<pubDate>Thu, 03 Feb 2011 10:32:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-87483</guid>
		<description><![CDATA[@Gshmn, please create a new question under &quot;Ask a Question&quot; tag and if possible read the Tips on ur right hand side under the caption &quot;Tips on asking a question&quot;. It helps to see ur Q maximum members and u can get maximum answers from this community. Please visit &lt;a href=&quot;http://itknowledgeexchange.techtarget.com/itanswers/ask_question/&quot;&gt;Here&lt;/a&gt; and create a new question. I will definitely revert back, if possible. 

Thanks--]]></description>
		<content:encoded><![CDATA[<p>@Gshmn, please create a new question under &#8220;Ask a Question&#8221; tag and if possible read the Tips on ur right hand side under the caption &#8220;Tips on asking a question&#8221;. It helps to see ur Q maximum members and u can get maximum answers from this community. Please visit <a href="http://itknowledgeexchange.techtarget.com/itanswers/ask_question/">Here</a> and create a new question. I will definitely revert back, if possible. </p>
<p>Thanks&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gshmn</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/#comment-87481</link>
		<dc:creator>gshmn</dc:creator>
		<pubDate>Thu, 03 Feb 2011 10:10:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-87481</guid>
		<description><![CDATA[how to used standardize formula in excel]]></description>
		<content:encoded><![CDATA[<p>how to used standardize formula in excel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rechil</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/#comment-83095</link>
		<dc:creator>rechil</dc:creator>
		<pubDate>Mon, 01 Nov 2010 04:26:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-83095</guid>
		<description><![CDATA[There isn&#039;t a built in function for this, BUT you can create your own. For eg. if u want to highlight colored range....
Press Alt F11 to get into the VBA editor, then insert a module (insert menu) into your workbook.  Into this write the following: I just provide as an example, u must change according to ur scenario.....

Function colornumber(myvar As Range)
colornumber = myvar.Interior.ColorIndex
End Function

Function colorcount(myvar As Range, ColVar As Long)
For Each cell In myvar
If cell.Interior.ColorIndex = ColVar Then colorcount = colorcount + 1
Next

End Function


These two functions give you what you need 

Enter this formula onto the worksheet:

=colorcount(A1:A16,colornumber(A1))


and you will get the result you need]]></description>
		<content:encoded><![CDATA[<p>There isn&#8217;t a built in function for this, BUT you can create your own. For eg. if u want to highlight colored range&#8230;.<br />
Press Alt F11 to get into the VBA editor, then insert a module (insert menu) into your workbook.  Into this write the following: I just provide as an example, u must change according to ur scenario&#8230;..</p>
<p>Function colornumber(myvar As Range)<br />
colornumber = myvar.Interior.ColorIndex<br />
End Function</p>
<p>Function colorcount(myvar As Range, ColVar As Long)<br />
For Each cell In myvar<br />
If cell.Interior.ColorIndex = ColVar Then colorcount = colorcount + 1<br />
Next</p>
<p>End Function</p>
<p>These two functions give you what you need </p>
<p>Enter this formula onto the worksheet:</p>
<p>=colorcount(A1:A16,colornumber(A1))</p>
<p>and you will get the result you need</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sbelectric</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/excel-2007-formula-question-is-there-a-standard-formula-for-this-or-is-it-a-custom/#comment-83090</link>
		<dc:creator>sbelectric</dc:creator>
		<pubDate>Mon, 01 Nov 2010 03:12:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-83090</guid>
		<description><![CDATA[I had  a similar situation  in the past but I got over with a mostly manual operation.  I am interested with the solution provided by Rechil.  But I could not make it work.  The macro did not provide what I am looking for.  The  Count operation is not what Buddyboy123 asked (at least that is my understanding). 

Could Rechil please provide more detail – you provide such good and detailed answer.  I can use your concept to find solution to my situation.  
  
Buddyboy123 were you able to apply Rechil’s suggestion – just curious? 

I have a rather large Spreadsheet &amp; would like to know the cell addresses when some one highlights it (by putting background color).]]></description>
		<content:encoded><![CDATA[<p>I had  a similar situation  in the past but I got over with a mostly manual operation.  I am interested with the solution provided by Rechil.  But I could not make it work.  The macro did not provide what I am looking for.  The  Count operation is not what Buddyboy123 asked (at least that is my understanding). </p>
<p>Could Rechil please provide more detail – you provide such good and detailed answer.  I can use your concept to find solution to my situation.  </p>
<p>Buddyboy123 were you able to apply Rechil’s suggestion – just curious? </p>
<p>I have a rather large Spreadsheet &amp; would like to know the cell addresses when some one highlights it (by putting background color).</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 325/326 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-26 05:53:11 -->