Sum of Vlookup values

G

Guest

Hi

I have a workbook with 2 sheets.

In sheet 1 I have 2 colums. Colum A containing names, colum B containing
numbers.

On sheet 2 I would like to make a function that gives me the sum of all
numbers in sheet 1 with the same name in colum A.

If a type =sum(vlookup(...........)
I only get the first number per name from sheet 1.

/Jan
 
B

BenjieLop

SirSimons said:
Hi

I have a workbook with 2 sheets.

In sheet 1 I have 2 colums. Colum A containing names, colum B
containing
numbers.

On sheet 2 I would like to make a function that gives me the sum of
all
numbers in sheet 1 with the same name in colum A.

If a type =sum(vlookup(...........)
I only get the first number per name from sheet 1.

/Jan

ASSUMING that:

1. the range of your data in Sheet 1 is A1:B100;
2. the names entered in Sheet 2 are all in Column A

enter this formula in Cell B1, Sheet2:

=SUMIF(SHEET1!$A$1:$A$100,A1,SHEET1!$B$1:$B$100)

and copy down until your range requirement in Sheet 2 is met.

Hope this is what you are looking for.

Regards.
 
G

Guest

Hi

I can use the Sumif commando, but I would also like to get the 95% fraktile
of the numbers...

"BenjieLop" skrev:
 

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

Sum Values from different column 1
If and Vlookup 3
nightmare formula 4
Sum multiple cells based on vlookup 1
VLOOKUP & Array 8
Using Vlookup with multiple sheet 3
vlookup i think 3
Need VLOOKUP to Work Two Ways 0

Top