Vlookup a subtotal

P

pfaxange18

Hi Excel Gurus!

Help! Is it possible to use the vlookup function to find subtotals o
another worksheet? I sorted, subtotaled and would like to use th
subtotaled data on a rollup summary tab on the first tab of my workbook
This is what I have:

=VLOOKUP(A3,Scores!E1:G43,7,FALSE)

Am I not able to pull the totals from the second tab? Mind you tha
there multiple subtotals throughout the worksheet on my 2nd tab. Help!

THANK YOU A MILLION IN ADVANCE
 
S

Spencer101

pfaxange18;1606096 said:
Hi Excel Gurus!

Help! Is it possible to use the vlookup function to find subtotals o
another worksheet? I sorted, subtotaled and would like to use th
subtotaled data on a rollup summary tab on the first tab of my workbook
This is what I have:

=VLOOKUP(A3,Scores!E1:G43,7,FALSE)

Am I not able to pull the totals from the second tab? Mind you tha
there multiple subtotals throughout the worksheet on my 2nd tab. Help!

THANK YOU A MILLION IN ADVANCE!

I think an example workbook would help us fully understand your pligh
here.
 
C

Claus Busch

Hi,

Am Fri, 5 Oct 2012 18:05:56 +0000 schrieb pfaxange18:
Help! Is it possible to use the vlookup function to find subtotals on
another worksheet? I sorted, subtotaled and would like to use the
subtotaled data on a rollup summary tab on the first tab of my workbook.
This is what I have:

=VLOOKUP(A3,Scores!E1:G43,7,FALSE)

you are trying to get a value from the 7.column of a matrix. But the
matrix E1:G43 only has 3 columns.
If you want the value from column G, then try:
=VLOOKUP(A3,Scores!A1:G43,7,FALSE)
or
=VLOOKUP(A3,Scores!E1:G43,3,FALSE)


Regards
Claus Busch
 

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