How can I count the rows with data in an Excel sheet?

后端 未结 6 2035
情书的邮戳
情书的邮戳 2021-01-04 08:24

I am trying to count the number of rows in a spreadsheet which contain at least one non-blank value over a few columns: i.e.

row 1 has a text value in column         


        
6条回答
  •  借酒劲吻你
    2021-01-04 08:59

    With formulas, what you can do is:

    • in a new column (say col D - cell D2), add =COUNTA(A2:C2)
    • drag this formula till the end of your data (say cell D4 in our example)
    • add a last formula to sum it up (e.g in cell D5): =SUM(D2:D4)

提交回复
热议问题