user11214808
user11214808

Reputation:

Formula to Find Count of Odd Numbers in Google Sheets

I have 500 numbers (range A1:T25) and I have to find a formula to find the count of the odd numbers in that range. I do not see any way to use COUNTIF or ISODD or MOD (by 2). I am no expert in spreadsheet functions at all, so I do not know how to do this.

Upvotes: 1

Views: 1503

Answers (1)

player0
player0

Reputation: 1

try it like this:

=ARRAYFORMULA(COUNTIF(ISODD(A1:T25); TRUE))

0


=SUMPRODUCT(ISODD(A1:T25)) @Tom Sharpe

Upvotes: 3

Related Questions