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

后端 未结 6 2094
情书的邮戳
情书的邮戳 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 09:01

    This is what I finally came up with, which works great!

    {=SUM(IF((ISTEXT('Worksheet Name!A:A))+(ISTEXT('CCSA Associates'!E:E)),1,0))-1}

    Don't forget since it is an array to type the formula above without the "{}", and to CTRL + SHIFT + ENTER instead of just ENTER for the "{}" to appear and for it to be entered properly.

提交回复
热议问题