Reputation: 203
I have in Google sheet plenty of columns and I have about 15,000 rows, I want to count how many cells contain "NA" these 2 letters in column F.
Upvotes: 0
Views: 49
Reputation: 1
try simple COUNTIF like:
COUNTIF
=COUNTIF(F:F, "NA")
Upvotes: 1