Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
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   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
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   Report Post  
Posted to microsoft.public.excel.misc
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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
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   Report Post  
Posted to microsoft.public.excel.misc
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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
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
...
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.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Count number of cells and total in one column, based on another column suffix Pierre Excel Worksheet Functions 5 October 31st 07 12:28 AM
Count the number of names in a column James Excel Worksheet Functions 9 August 13th 07 10:48 PM
Count Number of Occurrences in a Column anniejhsu Excel Worksheet Functions 7 May 31st 06 09:29 AM
How do I count the frequency of a given number in a column? dykstra_sj New Users to Excel 6 February 2nd 06 08:32 PM
Count number of items in one column that have a value in another? onthefritz Excel Worksheet Functions 5 December 10th 05 04:19 PM


All times are GMT +1. The time now is 06:49 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"