Counts the number of cells that contain numbers in a range or list of arguments.
Den här funktionen fungerar likadant i Google Kalkylark som i Excel — samma syntax och argument.
COUNT(value1, [value2], …)The COUNT function is used to get the number of entries in a number field that are in a range or array of numbers. It ignores empty cells, logical values, text, or error values within the range.
=COUNT(A1:A5)Resultat: 3
If A1:A5 contains {10, 'apple', 20, '', 30}, the function returns 3 because it counts only the numbers.
No, the COUNT function only counts cells that contain numbers.