Adding a Statement Showing an Automatic Row Count

Written by Allen Wyatt (last updated October 15, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365


1

Jithin has a data table that has 20 rows. He would like to add a statement below the table saying "This table has 20 rows." He would like to make the row count dynamic, however, as he frequently adds rows to or deletes rows from the table.

There are a number of ways you can put together such a statement, and the ways vary depending on how you put your data table together. If your data is simply that—data in an Excel worksheet—then you can use a formula similar to the following:

="The data table has " & COUNTA(A2:A21) & " rows"

This assumes that you table is in rows 1 through 21, with row 1 being a row of headings. (In other words, actual data is in rows 2 through 21.) The COUNTA function returns a count of any cells in the range A2:A21 that are not empty.

The only thing that you need to be careful of is when you add rows to your data table. In order for the formula to automatically adjust, you'll want to make sure that you only add rows after row 2 and before row 21. Doing anything different will mean that your "totals" formula points to the wrong rows.

Of course, you could modify the formula just a bit to overcome this potential problem. All you need to do is make sure that your "totals" formula is in row 23 (or in a row further down) and that your formula references rows 1 through 22:

="The data table has " & COUNTA(A1:A22) - 1 & " rows"

This works on the assumpution (again) that row 1 contains headings (thus the act of subtracting 1 from what COUNTA returns) and that row 22 is empty. Now you can add rows anywhere from rows 2 through 22 and you'll have no problem with the formula.

The above formulas work only if there are no blank cells in the range A1:A22. If there are, then a different approach would be better. This formula using the ROWS function will give the desired result:

="The data table has " & ROWS(A2:A21) & " rows"

There are other variations on these formulas that could be used, relying on other functions such as ROW, SUBTOTAL, COUNT, COUNTBLANK, and a few others. For general purposes, though, the examples already provided should work just fine.

There is another way your data can be formatted—as a formal "data table." This is done by selecting your data, displaying the Insert tab of the ribbon, and then clicking Table. Once the table is created, it is automatically assigned a name by Excel. The default name for your first table is Table1, then Table2, etc. Given this information, the easiest way to get your totals formula is like this:

="The data table has " & ROWS(Table1) & " rows"

The benefit to this approach is that you can insert rows anywhere within the defined table, and the ROWS function will always refer to the proper rows in the table.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2294) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Inserting a Non-Breaking Hyphen

Non-breaking hyphens can come in handy for some types of writing. They force the words (or characters) on both sides of ...

Discover More

Printing Only Changed Pages

Turn Track Changes on, and you can easily see where you've made changes throughout a document. If you want to print only ...

Discover More

Specifying the Behavior of the Enter Key

You type information in a cell and press Enter. What happens then? Excel allows you to specify exactly what should ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Ignoring Case in a Comparison

Do you want Excel to take the case of your text into account when it does comparisons in a formula? The IF statement ...

Discover More

Referencing the Last Six Items in a Formula

If you have a list of data in a column, you may want to determine an average of whatever the last few items are in the ...

Discover More

Patterns of Numbers with a Formula

Want to create a sequential pattern using formulas? It's easy to do if you take a look at how your data repeats. This tip ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 7 + 1?

2022-10-16 09:41:21

J. Woolley

After you create a Table, right-click a cell in the table and pick Table > Totals Row. Then select a cell in the totals row, click the drop-down arrow, and pick Count (or Count Number to skip non-numeric).


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.