A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Count to find the number of 100% 90% 80% in a column



 
 
Thread Tools Display Modes
  #1  
Old June 2nd, 2008, 09:38 PM posted to microsoft.public.excel.misc
% Count
external usenet poster
 
Posts: 3
Default Count to find the number of 100% 90% 80% in a column

I've tried different count functions but can't seem to get it right. I'm
trying to count the number of 100% on 1 line from a column on another sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100% from is
a formula cell that returns this %. Could I please get help with this
formula.
  #2  
Old June 2nd, 2008, 09:55 PM posted to microsoft.public.excel.misc
Max
external usenet poster
 
Posts: 8,574
Default Count to find the number of 100% 90% 80% in a column

.. to count the number of 100%
Did you try something like this:
=COUNTIF(Sheet2!3:3,100%)
or
=COUNTIF(Sheet2!A:A,100%)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"% Count" wrote:
I've tried different count functions but can't seem to get it right. I'm
trying to count the number of 100% on 1 line from a column on another sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100% from is
a formula cell that returns this %. Could I please get help with this
formula.

  #3  
Old June 2nd, 2008, 09:57 PM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default Count to find the number of 100% 90% 80% in a column

The column I'm getting the 100% from
is a formula cell that returns this %.


To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right. I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100% from
is
a formula cell that returns this %. Could I please get help with this
formula.



  #4  
Old June 3rd, 2008, 08:57 PM posted to microsoft.public.excel.misc
% Count
external usenet poster
 
Posts: 3
Default Count to find the number of 100% 90% 80% in a column

I've used the one with the 1 below and it return the 100% ok but I could not
get the 90%. I need to count the ones between 90 & 100 then 80 to 89 ect...
I'm not sure how to do that.

"T. Valko" wrote:

The column I'm getting the 100% from
is a formula cell that returns this %.


To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right. I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100% from
is
a formula cell that returns this %. Could I please get help with this
formula.




  #5  
Old June 3rd, 2008, 09:54 PM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default Count to find the number of 100% 90% 80% in a column

Follow this pattern:

100%:
=COUNTIF(A1:A10,100%)

90 to 99:
=COUNTIF(A1:A10,"=90%")-COUNTIF(A1:A10,"99%")

80 to 89:
=COUNTIF(A1:A10,"=80%")-COUNTIF(A1:A10,"89%")

70 to 79
=COUNTIF(A1:A10,"=70%")-COUNTIF(A1:A10,"79%")

etc
etc


--
Biff
Microsoft Excel MVP


"% Count" wrote in message
...
I've used the one with the 1 below and it return the 100% ok but I could
not
get the 90%. I need to count the ones between 90 & 100 then 80 to 89
ect...
I'm not sure how to do that.

"T. Valko" wrote:

The column I'm getting the 100% from
is a formula cell that returns this %.


To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right.
I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100%
from
is
a formula cell that returns this %. Could I please get help with this
formula.






  #6  
Old June 3rd, 2008, 10:00 PM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default Count to find the number of 100% 90% 80% in a column

P.S.

You might have to format the cells as GENERAL or NUMBER.

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
Follow this pattern:

100%:
=COUNTIF(A1:A10,100%)

90 to 99:
=COUNTIF(A1:A10,"=90%")-COUNTIF(A1:A10,"99%")

80 to 89:
=COUNTIF(A1:A10,"=80%")-COUNTIF(A1:A10,"89%")

70 to 79
=COUNTIF(A1:A10,"=70%")-COUNTIF(A1:A10,"79%")

etc
etc


--
Biff
Microsoft Excel MVP


"% Count" wrote in message
...
I've used the one with the 1 below and it return the 100% ok but I could
not
get the 90%. I need to count the ones between 90 & 100 then 80 to 89
ect...
I'm not sure how to do that.

"T. Valko" wrote:

The column I'm getting the 100% from
is a formula cell that returns this %.

To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right.
I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100%
from
is
a formula cell that returns this %. Could I please get help with this
formula.







  #7  
Old June 3rd, 2008, 10:09 PM posted to microsoft.public.excel.misc
% Count
external usenet poster
 
Posts: 3
Default Count to find the number of 100% 90% 80% in a column

I tried this. I need to test more but it looks like it works?

=COUNTIF('Current '!I2:I9,".89") - COUNTIF('Current '!I2:I9,".99")

"% Count" wrote:

I've used the one with the 1 below and it return the 100% ok but I could not
get the 90%. I need to count the ones between 90 & 100 then 80 to 89 ect...
I'm not sure how to do that.

"T. Valko" wrote:

The column I'm getting the 100% from
is a formula cell that returns this %.


To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right. I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100% from
is
a formula cell that returns this %. Could I please get help with this
formula.




  #8  
Old June 3rd, 2008, 10:24 PM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default Count to find the number of 100% 90% 80% in a column

Yeah, that'll work. See my other reply.

--
Biff
Microsoft Excel MVP


"% Count" wrote in message
news
I tried this. I need to test more but it looks like it works?

=COUNTIF('Current '!I2:I9,".89") - COUNTIF('Current '!I2:I9,".99")

"% Count" wrote:

I've used the one with the 1 below and it return the 100% ok but I could
not
get the 90%. I need to count the ones between 90 & 100 then 80 to 89
ect...
I'm not sure how to do that.

"T. Valko" wrote:

The column I'm getting the 100% from
is a formula cell that returns this %.

To count entries that equal 100%:

=COUNTIF(A1:A10,"100%")

Or:

=COUNTIF(A1:A10,1)

--
Biff
Microsoft Excel MVP


"% Count" % wrote in message
...
I've tried different count functions but can't seem to get it right.
I'm
trying to count the number of 100% on 1 line from a column on another
sheet
and the 90%'s on another, 80% ..... The column I'm getting the 100%
from
is
a formula cell that returns this %. Could I please get help with
this
formula.





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:36 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.