sum at 3 rows below dynamic range

D

dave h

HI

i have a dynamic range created with

=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A$1:$A$100),COUNTA(Sheet1!$1:$1))

and i want to sum the values in column c with the sum 3 rows below the end
of the dynamic range

how do i do this?
 
D

Dave Peterson

I'd just use the same criteria, but apply it to column C:

either another defined name using this formula:
=OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$A$1:$A$100)+3,1)

or
=SUM(OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$A$1:$A$100)+3,1))
 
D

dave h

thanks ever so much


Dave Peterson said:
I'd just use the same criteria, but apply it to column C:

either another defined name using this formula:
=OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$A$1:$A$100)+3,1)

or
=SUM(OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$A$1:$A$100)+3,1))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top