A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do I get the sum of vlookup?



 
 
Thread Tools Display Modes
  #1  
Old June 22nd, 2009, 04:47 AM posted to microsoft.public.excel.worksheet.functions
Jiffy
external usenet poster
 
Posts: 3
Default How do I get the sum of vlookup?

I have 4 worksheet each with over 80 rows of information.

I want to lookup a code in one column, and if found I want the value from
the immediately adjacent column pulled out and added up eg:

code value
a 1.00
b 2.00
a 5.03
c 0.45
d 1.20
a 2.50

so that if I looked up "a" in the first column, it would add 1.00, 5.03 and
2.50 from the second column and spit out a total for me.

I want this to complete the same function on all 4 worksheets and get me the
total value from all worksheets for each code.

I've tried various function combinations of IF, VLOOKUP, SUM etc and can't
seem to get anything to return a result other than error. please help!

  #2  
Old June 22nd, 2009, 04:56 AM posted to microsoft.public.excel.worksheet.functions
OssieMac
external usenet poster
 
Posts: 862
Default How do I get the sum of vlookup?



=SUMIF(A2:A7,"=a",B2:B7)

Lookup SUMIF function in Help for more info on using this function.


--
Regards,

OssieMac


"jiffy" wrote:

I have 4 worksheet each with over 80 rows of information.

I want to lookup a code in one column, and if found I want the value from
the immediately adjacent column pulled out and added up eg:

code value
a 1.00
b 2.00
a 5.03
c 0.45
d 1.20
a 2.50

so that if I looked up "a" in the first column, it would add 1.00, 5.03 and
2.50 from the second column and spit out a total for me.

I want this to complete the same function on all 4 worksheets and get me the
total value from all worksheets for each code.

I've tried various function combinations of IF, VLOOKUP, SUM etc and can't
seem to get anything to return a result other than error. please help!

  #3  
Old June 22nd, 2009, 04:56 AM posted to microsoft.public.excel.worksheet.functions
Fred Smith[_4_]
external usenet poster
 
Posts: 2,386
Default How do I get the sum of vlookup?

You want Sumif, as in:
=Sumif(a:a,"a",b:b)

Regards,
Fred

"jiffy" wrote in message
...
I have 4 worksheet each with over 80 rows of information.

I want to lookup a code in one column, and if found I want the value from
the immediately adjacent column pulled out and added up eg:

code value
a 1.00
b 2.00
a 5.03
c 0.45
d 1.20
a 2.50

so that if I looked up "a" in the first column, it would add 1.00, 5.03
and
2.50 from the second column and spit out a total for me.

I want this to complete the same function on all 4 worksheets and get me
the
total value from all worksheets for each code.

I've tried various function combinations of IF, VLOOKUP, SUM etc and can't
seem to get anything to return a result other than error. please help!


  #4  
Old June 22nd, 2009, 06:28 AM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default How do I get the sum of vlookup?

Hi "jiffy"

=SUMIF(A:A,"a",B:B)
will give you the sum for the current sheet

For getting sum from multiple sheets try the below. Assuming your sheets are
named Sheet1,Sheet2,Sheet3,Sheet4 etc; then

=SUMPRODUCT(SUMIF(INDIRECT("'Sheet"&ROW(INDIRECT(" 1:4"))&"'!A1:A100"),"a",INDIRECT("'Sheet"&ROW(INDI RECT("1:4"))&"'!B1:B100")))

If this post helps click Yes
---------------
Jacob Skaria


"jiffy" wrote:

I have 4 worksheet each with over 80 rows of information.

I want to lookup a code in one column, and if found I want the value from
the immediately adjacent column pulled out and added up eg:

code value
a 1.00
b 2.00
a 5.03
c 0.45
d 1.20
a 2.50

so that if I looked up "a" in the first column, it would add 1.00, 5.03 and
2.50 from the second column and spit out a total for me.

I want this to complete the same function on all 4 worksheets and get me the
total value from all worksheets for each code.

I've tried various function combinations of IF, VLOOKUP, SUM etc and can't
seem to get anything to return a result other than error. please help!

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:52 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.