I'm looking for the equivalent of the COUNTIF(A1:A100;TRUE)
formula of excel,
which won't happen to function in google sheets.
Had already tried to SUM(--(A1:A100))
, neither this doesn't seem to do the job.
The above-mentioned formulas do function in excel/numbers, but in google sheets. Google sheets outcome is zero for this formula.
Edit: Created a copy of the sheet and published -> Google Sheet
Edit2: Was my fault... I used the german expression SUMIF() instead of COUNTIF(). Sheets should definitely not have multilingual expressions -.- Credits goes to @AnonymesEinhorn. Thank you.
TRUE
and not text? – Scott Craner=COUNTIF(A1:A100,"True")
– Scott Craner=countif(E:E;true)
works on the test sheet you provided. – Scott Craner