Forum Discussion
athakore
Jul 01, 2021Copper Contributor
COUNTA copy down column
Hi, I am using COUNTA to give me a number for a specific range A2:A96. Is there a way that when I copy the formula down a column for it to change the range to the next n number of rows? Each 95 ...
- Jul 01, 2021
Let's say the first formula is in cell D3. Change the formula to
=COUNTA(OFFSET($A$2:$A$96,95*(ROW(D3)-ROW($D$3)),0))
and fill or copy down.
HansVogelaar
Jul 01, 2021MVP
Let's say the first formula is in cell D3. Change the formula to
=COUNTA(OFFSET($A$2:$A$96,95*(ROW(D3)-ROW($D$3)),0))
and fill or copy down.
athakore
Jul 01, 2021Copper Contributor
thank you so much. I was trying to play around with offset but could not get it to work. This worked perfectly.