countif

A

alabrent

Here is the problem, I am trying to count (I3:BI3, "=X or E")
In these cell I have X or E and all I need is a count of the X and/or E
 
J

JE McGimpsey

Here is the problem, I am trying to count (I3:BI3, "=X or E")
In these cell I have X or E and all I need is a count of the X and/or E

One way:

=COUNTIF(I3:BI3,"X") + COUNTIF(I3:BI3,"E")

another:

=SUM(COUNTIF(I3:BI3,{"X","E"}))
 

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