We had a client that wanted to separate a very large Excel list of about 3000 rows into groups of 100 so that they could print off wrote lists for about thirty volunteers. We didn’t have a good answer to this and then one of our in-house text came up with the idea of adding a helper column that used a very simple formula based on the INT function combined with the SUBTOTAL function in Excel.
It’s a pretty cool solution:
=INT((ROW()-2)/100)+1
This formula groups every 100 rows together by assigning them the same group number.Data
tab, then in the Outline
group, click Subtotal
.Subtotal
dialog box, select “Group” from the At each change in
dropdown list.Use function
dropdown list. This function will be applied to each group of 100 rows. For example, you can select Count
to count the number of rows in each group.Add subtotal to
box, select the checkboxes for the column(s) you want to apply the function to.This website uses cookies.