Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
.. 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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count number of cells and total in one column, based on another column suffix | Excel Worksheet Functions | |||
Count the number of names in a column | Excel Worksheet Functions | |||
Count Number of Occurrences in a Column | Excel Worksheet Functions | |||
How do I count the frequency of a given number in a column? | New Users to Excel | |||
Count number of items in one column that have a value in another? | Excel Worksheet Functions |