Formula Advice on creating a group of sequence numbers to restart after 20 rows

VBA learner ITG

Active Member
Joined
Apr 18, 2017
Messages
267
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
hi all,

I need your advice please as I am im sure its a simple fix but i cannot think of the solution.

The below formula creates a group of sequence numbers based on 2 colmns which works.

=IF(A1<>A2,1,IF(B1=B2,G1,G1+1))

However, I need it to restart the formula number sequencing after 20 rows of data.

Row 1 is the row headers.

from row 2 to row 21 would = 20 rows.

From row 22 to row 41 would = 20 rows.

Any help appreciated.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
OK, if it is really that straightforward, I think this addition would do it:
=IF(MOD(ROW(),20)=2,1,IF(A1<>A2,1,IF(B1=B2,G1,G1+1)))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,914
Messages
6,122,211
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top