Index use with areas

  • Thread starter Thread starter charlie
  • Start date Start date
C

charlie

The example in HELP for Index shows the following:
=Sum(Index(A1:C11,0,3,1))... The sum actually adds up both area 1 and 2 and
not just column 3, area 1. What is the proper format to add up just column 3,
area 1?
 
Surely in your formula you have only one area: A1:C11
For two areas you need something like INDEX((A1:B11, C1:C11),0,3,1))...
Your formula correctly summed column C for me
best wishes
 
Works fine for me.

Also could use:

=SUM(INDEX(A1:C11,,3))
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


The example in HELP for Index shows the following:
=Sum(Index(A1:C11,0,3,1))... The sum actually adds up both area 1 and 2 and
not just column 3, area 1. What is the proper format to add up just column
3,
area 1?
 
Thanks, defining both areas works fine... the sample in the help file is not
correct..
 

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

Back
Top