Counting number of TRUEs in a column

  • Thread starter Thread starter Jeff Granger
  • Start date Start date
J

Jeff Granger

Following on somewhat from a previous post, I have a column that contains
the text TRUE or FALSE. I need to count the number cells containing TRUE.

Suggestions?

Jeff
 
Following on somewhat from a previous post, I have a column that contains
the text TRUE or FALSE. I need to count the number cells containing TRUE.

Suggestions?

Jeff

=COUNTIF(B:B,TRUE)
--ron
 
Back
Top