Sum column - parameter

  • Thread starter Thread starter Oscar
  • Start date Start date
O

Oscar

How can I sum n-th column (n is parameter)? Something like =sum(E:E). Tried
with offset but doesn't work with E:E as it works with E1:E100.

Thanks,
Oscar.
 
In say, B2: =SUM(OFFSET(A:A,,4))
will return the same as: =SUM(E:E)
(col param = 4 = 4 cols to the right of anchor col A)
 
Exactly what I was looking for.

Thanks, Oscar.

Max said:
In say, B2: =SUM(OFFSET(A:A,,4))
will return the same as: =SUM(E:E)
(col param = 4 = 4 cols to the right of anchor col A)
 

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

Similar Threads

Formula too long 4
Sumif() with dates 10
Set add function ignore #N/A 1
Last non-blank row 1
countif help 4
Sumproduct using NOT equal to 7
SUMIF and SUM.NUMBER 8
SUMPRODUCT Formula 6

Back
Top