![]() |
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. |
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. |
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. |
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. |
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. |
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. |
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. |
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. |
All times are GMT +1. The time now is 09:44 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com