Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi, i'm puzzled and have never run across this before. I have a column
containing several instances of this value: <=$9000 nothing fancy as you can see. When i countif and point to this column using a value copied/pasted so i know it's exact, my result is zero. I even reference the value in the column in the formula and get zero. Any ideas? Thank you. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
C1 = <=$9000 =COUNTIF(A:A,"*"&C1) The wildcard forces the criteria to be evaluated as the TEXT string "<=$9000". =COUNTIF(A:A,C1) In this version the criteria is being evaluated as the logical expression "less than or equal to $9000". -- Biff Microsoft Excel MVP "PatriciaT" wrote in message ... Hi, i'm puzzled and have never run across this before. I have a column containing several instances of this value: <=$9000 nothing fancy as you can see. When i countif and point to this column using a value copied/pasted so i know it's exact, my result is zero. I even reference the value in the column in the formula and get zero. Any ideas? Thank you. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How about:
=COUNTIF(a:a,"=<=$9000") This may be easier to understand later: =COUNTIF(a:a,"="&"<=$9000") It looks weird, but seems to work in this case. And if you get one that you just can't get right, you could use: =sumproduct(--(a1:a99="<=$9000")) But you can't use the whole column until xl2007. PatriciaT wrote: Hi, i'm puzzled and have never run across this before. I have a column containing several instances of this value: <=$9000 nothing fancy as you can see. When i countif and point to this column using a value copied/pasted so i know it's exact, my result is zero. I even reference the value in the column in the formula and get zero. Any ideas? Thank you. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNTIF STOPS COUNTING | Excel Worksheet Functions | |||
COUNTIF not counting properly | Excel Discussion (Misc queries) | |||
COUNTIF counting incorrectly | Excel Worksheet Functions | |||
COUNTIF not counting | Excel Discussion (Misc queries) | |||
countif counting properties | Excel Discussion (Misc queries) |