smaller formula to sum together 4 columns, 3 of them next to one a

G

Guest

this is what i have now:

=INDEX(EBITDA!$L$13:$L$6000,MATCH(D13,EBITDA!$D$13:$D$6000,0),1)+INDEX(EBITDA!$M$13:$M$6000,MATCH(D13,EBITDA!$D$13:$D$6000,0),1)+INDEX(EBITDA!$N$13:$N$6000,MATCH(D13,EBITDA!$D$13:$D$6000,0),1)+INDEX(EBITDA!$O$13:$O$6000,MATCH(D13,EBITDA!$D$13:$D$6000,0),1)

you see this formula is on one worksheet, matching numbers on another
worksheet to sume together 4 columns. This looks ugly. Is there a smaller
way of doing this -- to at least add together columns m, n and o all at once?

thanks for taking a look...
 
G

Guest

Hello Steve,

with an "array formula" that needs to be coonfirmed with CTRL+SHIFT+ENTER

=SUM(VLOOKUP(D13,ebitda!$D$13:$O$6000,{9,10,11,12},0))

or if you know that D13 has only one match in ebitda!$D$13:$D$6000 you could
use

=SUMPRODUCT((ebitda!$D$13:$D$6000=D13)*ebitda!$L$13:$O$6000)
 
G

Guest

or perhaps this is better.....

=SUM(OFFSET(ebitda!$L$13:$O$13,MATCH(D13,ebitda!$D$13:$D$6000,0)-1,))
 
P

Peo Sjoblom

Or even

=SUMPRODUCT((EBITDA!$D$13:$D$6000=D13)*(EBITDA!$L$13:$O$6000))


--

Regards,

Peo Sjoblom
 

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