When using a ...IF type of function (like COUNTIF, AVERAGEIF, etc.), I use condition strings:
- e.g.
">100","=Mr. Smith"
Instead of using a literal from within the string, how do I (or can I) reference a different cell from within the table?
- e.g.
">ColA Row2"
Stuff I've Tried (that doesn't work)
...,"=A2",...
...,=A2,...
COUNTIF(Range,Criteria). It should be similar to=COUNTIF(A2:A10, "Mr. Smith"). – fsb Nov 08 '18 at 16:00=COUNTIF(A1:D5, “=ipsum”) returns 1, because the text string “ipsum” appears once in the collection referenced by the range.– Anthony C Nov 09 '18 at 22:06COUNTIFto a different cell and see if that throws an error? Maybe it's a different part of your formula that's generating it? – fsb Nov 09 '18 at 22:18COUNTIF(A2:A10, "=A2"),COUNTIF(A2:A10, =A2). The correct answer:COUNTIF(A2:A10, A2). I'll accept your answer if you enter one. Thank you. – Anthony C Nov 10 '18 at 23:20