Advancing row numbers in a Count formula by "x"

Scadadude

Board Regular
Joined
Oct 17, 2008
Messages
50
Hi I have a very long spreadsheet and every 24th row in a column L for example I am using a =COUNT(L28,P28,T28). The problem is I have 1440 rows that I am pulling data from and I only want the data from every 24th row. How can I make it where I can populate my 1440 rows automatically with the formula copying over and advancing the Rows by 24

=COUNT(L28,P28,T28)
=COUNT(L52,P52,T52)
=COUNT(L76,P76,T76)


Like the example above...I dont wanna have to manualy type this formula and change it 1440 times.

Thanks so much

Scadadude
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
You need to copy the 23, empty cells above your formula - as well as the cell with your formula - when you do your copy and paste.

You should also be able to copy that cell specifically and paste it in the cell 24 rows down, but the method above is significantly faster.
 
Upvote 0
Lemme explain a little better....I have 1440 cells each with a Count Formula in it. I need the formula to advance the row numbers in them by 24.
 
Upvote 0
Hi

Try this in row 1 and copy down.
Code:
=IF(MOD(ROWS(U$1:U1),24)=4,COUNT(L1,P1,T1),"")
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,136
Members
452,890
Latest member
Nikhil Ramesh

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