I am trying to add a repeating formula in Excel that will sum a range of values in another column (scores) for each subject to get a Total Score for each subject.
I have added the following formula which seems to total the values correctly:
SUM(OFFSET($AO$2,(ROW()-424)*424,0,424,1))
Here is the result I currently have from adapting the formula...
Does anyone know how can I get this formula to repeat every 425 rows in this column (AQ)?
Thanks for any tips.
![]: https://i.stack.imgur.com/8DIjK.png](https://i.stack.imgur.com/8DIjK.png)

set rng = union(cells(425, "AQ"), cells(850, "AQ"), cells(1275, "AQ"))thenrng.formula = "SUM(OFFSET($AO$2,(ROW()-424)*424,0,424,1))"The union could be aggregated in a For ... Next loop. - user4039065