Counting formula question

G

Guest

I am attempting to count the number of times a phrase occurs in a column, but
this column has reasons in a phrase dropdown list form (generated from a
hidden column on the same worksheet). Is there something I'm missing in this
formula?
(the
{=SUM(IF((E2:E20="Not chosen from list")*1,0))}

A B C D
E
sent back corrected Ref # Reason: (hidden
with list
1 123 Blank fields or dashes of
text choices in
1 124 Not chosen from list
dropdown in D)
1 125 Not chosen from list

Totals: Not chosen from list ____
Blank fields or dashes ____
(etc.)

Thanks for any help
 
G

Guest

=SUM(IF(E2:E20="Not chosen from list",1))

ctrl+shift+enter, not just enter

or
=SUMPRODUCT(--(E2:E20="Not chosen from list"))
Just normal ENTER
 
G

Guest

=COUNTIF(A:A,"Not chosen from list")


--
If this reply was helpful, please indicate that your question has been
answered to help others find anwsers to similar questions.

www.silverbirddesigns.com

Fighting Texas Aggie Class of 2009
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top