vlookup and sum of colums

W

willem

In normal vlookup it returns only 1 value, is it possible to lookup a value
and than give the sum of certain columns?
 
W

willem

I need the value from what ever certificate, for example 35.
the value that i want to be returned is sum of column 3, 5 and 7 (table
array column numbers).
The quickest way would be to just insert another column with the sum of the
three colums but I'm affaid it will F@(#up my other spreadsheets which uses
the same summary sheet.
 
P

Pete_UK

The MATCH function will return the (relative) row in the table where a
match is found, so you could make use of that to add columns 3, 5 and
7 for that row, either in conjunction with INDEX or INDIRECT. If you
had posted some specific details of cell and column references I could
have proposed a possible formula for you.

Hope this helps.

Pete
 
R

Rasoul Khoshravan

I need the value from what ever certificate, for example 35.
the value that i want to be returned is  sum of column 3, 5 and 7 (table
array column numbers).
The quickest way would be to just insert another column with the sum of the
three colums but I'm affaid it will F@(#up my other spreadsheets which uses
the same summary sheet.

If you want to sum relevant data form three columns, 3,5 and7, you can
use three vlookup function and then sum these three vlookups.
=vlookup(H1, A1:G10,3)+vlookup(H1, A1:G10,5)+vlookup(H1, A1:G10,7)
 

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