The One Formula

W

Workbook

I am using this formula =SUM(C4:C46) however I want to change it so that it
counts any number in its range such as the number 2, 3, 4, 5, etc as a 1,
including the actual number 1.
 
D

Don Guillett

This is an ARRAY formula that must be entered using ctrl + shift+enter

=COUNT(IF(ISNUMBER(c4:c46),c4:c46))
 
W

Workbook

I think I made a mistake in my explanation. Thank you very much for your
help! Because I think it you interpret what I said differently this formula
does exactly what I asked. =COUNT(IF(ISNUMBER(c4:c46),c4:c46)) returns a 1
 
Top