Can you change the count function seeing formulas in cells as data. This
makes the function completely useless. I have an array 1000 cells X 500
cells. I need the count function to check on the number of occurances a
particular value is exceeded. The data is read into each of these cells by a
formula.
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/office/community/en-us/default.mspx?mid=11902c96-1351-4d20-b30b-dcb7837023c4&dg=microsoft.public.excel.worksheet.functions
|
|
0
|
|
|
|
Reply
|
Utf
|
6/6/2010 12:52:02 PM |
|
Hi,
You could have responded to the 2 answers you have in your other thread.
COUNT is not a useless formula, it is excellent at what it was designed to do
and that is COUNT things and you'll get no support for this suggestion.
If your tring to count a particular type of string or number then the
excellent COUNTIF is maybe what you require and there is a full description
of how it works in Excel Help, as there is also for COUNT.
--
Mike
When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
"robinessex" wrote:
> Can you change the count function seeing formulas in cells as data. This
> makes the function completely useless. I have an array 1000 cells X 500
> cells. I need the count function to check on the number of occurances a
> particular value is exceeded. The data is read into each of these cells by a
> formula.
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/community/en-us/default.mspx?mid=11902c96-1351-4d20-b30b-dcb7837023c4&dg=microsoft.public.excel.worksheet.functions
|
|
0
|
|
|
|
Reply
|
Utf
|
6/6/2010 1:12:57 PM
|
|
Sounds like maybe you need to be using COUNTIF rather than COUNT e.g.
=COUNTIF(range,">value")
where you substitute for range and value as needed.
This works on numbers directly entered into cells as well as numbers which
are the result of formulas.
When I tested (Excel 2003), COUNT would also count the number of cells in
which there are direct entry numbers as well as numbers which are the result
of formulas.
Regards,
Tom
"robinessex" wrote:
> Can you change the count function seeing formulas in cells as data. This
> makes the function completely useless. I have an array 1000 cells X 500
> cells. I need the count function to check on the number of occurances a
> particular value is exceeded. The data is read into each of these cells by a
> formula.
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/community/en-us/default.mspx?mid=11902c96-1351-4d20-b30b-dcb7837023c4&dg=microsoft.public.excel.worksheet.functions
|
|
0
|
|
|
|
Reply
|
Utf
|
6/6/2010 1:16:55 PM
|
|
Think COUNTIF is what you're after, not COUNT
Try something like this:
=COUNTIF(D2:F4,">=2")
which returns the number of cells within D2:F4 containing numbers greater
than or equal to 2. Adapt the range and condition to suit your actuals.
--
Max
Singapore
---
"robinessex" wrote:
> Can you change the count function seeing formulas in cells as data. This
> makes the function completely useless. I have an array 1000 cells X 500
> cells. I need the count function to check on the number of occurances a
> particular value is exceeded. The data is read into each of these cells by a
> formula
|
|
0
|
|
|
|
Reply
|
Utf
|
6/6/2010 1:16:56 PM
|
|
>I need the count function to check on the number
>of occurances a particular value is exceeded.
This will count cells that contain a number greater than 100.
=COUNTIF(A1:Z100,">100")
Or, using a cell to hold the criteria...
AB1 = 100
=COUNTIF(A1:Z100,">"&AB1)
--
Biff
Microsoft Excel MVP
"robinessex" <robinessex@discussions.microsoft.com> wrote in message
news:11902C96-1351-4D20-B30B-DCB7837023C4@microsoft.com...
> Can you change the count function seeing formulas in cells as data. This
> makes the function completely useless. I have an array 1000 cells X 500
> cells. I need the count function to check on the number of occurances a
> particular value is exceeded. The data is read into each of these cells by
> a
> formula.
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
> this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/community/en-us/default.mspx?mid=11902c96-1351-4d20-b30b-dcb7837023c4&dg=microsoft.public.excel.worksheet.functions
|
|
0
|
|
|
|
Reply
|
T
|
6/6/2010 1:23:53 PM
|
|
On Sun, 6 Jun 2010 05:52:02 -0700, robinessex
<robinessex@discussions.microsoft.com> wrote:
>Can you change the count function seeing formulas in cells as data. This
>makes the function completely useless. I have an array 1000 cells X 500
>cells. I need the count function to check on the number of occurances a
>particular value is exceeded. The data is read into each of these cells by a
>formula.
Don't use the COUNT function.
=COUNTIF(your_array,">particular_value")
will probably do what you want.
or
=COUNTIF(your_array,">"&cell_ref)
where cell_ref is the address of a cell that contains the value you
wish to see exceeded.
|
|
0
|
|
|
|
Reply
|
Ron
|
6/6/2010 3:12:24 PM
|
|
|
5 Replies
392 Views
(page loaded in 0.892 seconds)
Similiar Articles: microsoft.public.excel.worksheet.functionsCount function seeing formulas as data Utf 5 312 Can you change the count function seeing formulas in cells as data. This makes the function completely useless. counting unique text values in an array of data - microsoft.public ...If you do not see the button, follow this ... I tried this formula but am trying to get a count of unique values that ... number of unique values in a set of data. ... Count ... Counting NON-Blank fields - microsoft.public.excel.worksheet ...Column C has data in all rows (always). I need to count the ... those "blank" cells to see ... Why doesn't excel count function update automatically ... The formula ... Why doesn't excel count function update automatically ...The formula should count all of the non-blank cells in ... Automatic update of data in excel charts - microsoft.public.excel ... Why doesn't excel count function update ... Counting Filtered Results Using Autofilter - microsoft.public ...You sure you're seeing Ready ... about the AutoFilter function. In 2003, when you filtered a ... formula with something like "COUNT" or ... ... Count data by using a query ... CountIF Statement combining 2 different pieces of data - microsoft ...So I would like to see 9 lines showing up, US ... When to use a SUM(IF()) array formula... use multiple ... ... Function Quick Tutorial Using the COUNTIF Function to Count Data in ... Count contiguous cells, or count cell clusters - microsoft.public ...I could paste the COUNT function beside each cluster and ... up the column so you can actually see the ... 100000 is largest value to > > ' count. > > ' > > 'Formula ... Formula for counting frequency then sorting - microsoft.public ...Make sure it says "Count of Round Number" for Data Items. ... Sorting Function - microsoft.public ... See how to build labels and counting formulas for a Frequency ... How to count merged cells - microsoft.public.excel.worksheet ...Can someone help me in developing a formula that will: 1. Count ... in the archives of this group you will see ... Count Color Function, but when counting contain the merged ... COUNTIF across worksheets - microsoft.public.excel.worksheet ...... m shooting for a COUNTIF formula that will count ... I can get the formula to work if the data is on the ... Nested formula, repeat countif function using vlookup for ... count function seeing formulas in cells as data - Microsoft AnswersHow can you overcome the count function seeing formulas in cells as data? This makes the count and associated functions useless for any pratical purpose. Excel COUNT - Excel COUNT Function - Using Excel's COUNT Function... COUNT function in ... COUNT Function Example . For help with this example, see the image above. Enter the following data into ... function =COUNT(C1:C6) appears in the formula bar. Excel Count Functions -- Count Excel Cells... into the COUNT formula. The following COUNT function example ... Count Cells with Data -- COUNTA. The COUNTA function will count cells ... in which you want to see the count ... COUNTIF - Excel - Office.com - Microsoft Corporation: Software ...... within a range, use the SUMIF worksheet function. To have a formula ... sales amount, use the IF worksheet function. To count cells ... Data: Data: apples: 32: oranges: 54: peaches: 75: apples: 86 ... Excel COUNTIF Function Tutorial - Free Microsoft Excel Spreadsheet ...Using the COUNTIF Function to Count Data in Selected ... For help with this example, see the image above. Enter the following data ... Click on the Formulas tab. Choose More ... 7/19/2012 10:18:30 PM
|