Good day
Do you want to count how many cells in column contain numbers? Can use formula then (Formula below counts the amount of cells which contain a number value... just change the range to your requirement and place formula in cell where result should be...
=COUNT(A1:A22) (Result for Column A would be 8 cells containing numbers)
Do you want to sum cells in column containing numbers (All values added up)? Can use formula then (Formula below sums the amount of cells which contain a number value... just change the range to your requirement and place formula in cell where result should be...
=SUM(A1:A22) (Result for Column A would be 98)
Hope this is what you are looking for...