countif not blank google sheets code example
Example 1: google sheets count cells if not blank
# Basic syntax:
=COUNTA(range)
# Example usage:
=COUNTA(A1:B26)
Example 2: number of filled cells google sheets
=SUMPRODUCT(LEN(TRIM(A2:A13))>0)
# Basic syntax:
=COUNTA(range)
# Example usage:
=COUNTA(A1:B26)
=SUMPRODUCT(LEN(TRIM(A2:A13))>0)