Vlookup or match?

vxs

Board Regular
Joined
Dec 10, 2008
Messages
61
Hi All,
I am disappointed I cannot work this out myself :(

I want to lookup a specific Test String in a pivot table and once matched get the corresponding TOTAL.

Example. I want to find RENT'S grand total in the table below.


YEARJANFEBMARAPRMAYJUNJULYAUGSEPTOCTNOVDECTOTAL
FUEL
RENT£100
SHOPPING
MOBILE

<tbody>
</tbody>


This CELL is in another worksheet but I can work the referencing out myself I think. Just need the basic formula.

I was trying something along the lines of vlookup("RENT", and then using RIGHT but I cannot get it to work.

Thank you
 
Last edited:

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Use INDEX with two MATCHes:

=INDEX(B2:N5,MATCH("RENT",A2:A5,0),MATCH("Total",B1:N1;0))

If your lookup table is on another sheet you're going to have to use the sheet names (or named ranges) in your formulas.

The 0's (=FALSE) in your MATCHes mean you're looking for exact matches.

Also, I'd rather use cell references instead of hard coded words in my formulas.
 
  • Like
Reactions: vxs
Upvote 0
With your table in A1:N5 on "a sheet", this formula on the "a sheet" were A2 on sheet2 has "RENT" as the lookup_value...

=VLOOKUP(Sheet2!A2,$A$2:$N$5,14,0)

Howard
 
  • Like
Reactions: vxs
Upvote 0
Use INDEX with two MATCHes:

=INDEX(B2:N5,MATCH("RENT",A2:A5,0),MATCH("Total",B1:N1;0))

If your lookup table is on another sheet you're going to have to use the sheet names (or named ranges) in your formulas.

The 0's (=FALSE) in your MATCHes mean you're looking for exact matches.

Also, I'd rather use cell references instead of hard coded words in my formulas.

Hi,
I am struggling to get either solution to work, thank you for replying both.

In the first solution I get this error:

33vn2p3.png


Thanks
 
Upvote 0
Weird if I put numbers in row 4 to see where its getting the value "0" from it now returns "12" column "M" not "N" total figure ?

Am I doing something wrong here?

21b2e07.png
<style><!--table {mso-displayed-decimal-separator:"\."; mso-displayed-thousand-separator:"\,";}@page {margin:.75in .7in .75in .7in; mso-header-margin:.3in; mso-footer-margin:.3in;}td {padding-top:1px; padding-right:1px; padding-left:1px; mso-ignore:padding; color:black; font-size:12.0pt; font-weight:400; font-style:normal; text-decoration:none; font-family:Calibri, sans-serif; mso-font-charset:0; mso-number-format:General; text-align:general; vertical-align:bottom; border:none; mso-background-source:auto; mso-pattern:auto; mso-protection:locked visible; white-space:nowrap; mso-rotate:0;}.xl64 {text-align:center;}.xl65 {color:#574123; font-size:13.0pt; font-family:Tahoma; mso-generic-font-family:auto; mso-font-charset:0; text-align:center;}.xl66 {color:#574123; font-size:13.0pt; font-family:Tahoma; mso-generic-font-family:auto; mso-font-charset:0; mso-number-format:"\0022£\0022\#\,\#\#0_\)\;\[Red\]\\\(\0022£\0022\#\,\#\#0\\\)"; text-align:center;}--></style><style><!--table {mso-displayed-decimal-separator:"\."; mso-displayed-thousand-separator:"\,";}@page {margin:.75in .7in .75in .7in; mso-header-margin:.3in; mso-footer-margin:.3in;}td {padding-top:1px; padding-right:1px; padding-left:1px; mso-ignore:padding; color:black; font-size:12.0pt; font-weight:400; font-style:normal; text-decoration:none; font-family:Calibri, sans-serif; mso-font-charset:0; mso-number-format:General; text-align:general; vertical-align:bottom; border:none; mso-background-source:auto; mso-pattern:auto; mso-protection:locked visible; white-space:nowrap; mso-rotate:0;}.xl64 {text-align:center;}.xl65 {color:#574123; font-size:13.0pt; font-family:Tahoma; mso-generic-font-family:auto; mso-font-charset:0; text-align:center;}.xl66 {color:#574123; font-size:13.0pt; font-family:Tahoma; mso-generic-font-family:auto; mso-font-charset:0; mso-number-format:"\0022£\0022\#\,\#\#0_\)\;\[Red\]\\\(\0022£\0022\#\,\#\#0\\\)"; text-align:center;}--></style>
 
Last edited:
Upvote 0
I was one column short for the second MATCH.

This will do it:


=INDEX(A2:N6,MATCH("RENT",A2:A6,0),MATCH("Total",A2:N2,0))
 
  • Like
Reactions: vxs
Upvote 0
I try not to use overlapping ranges in my formulas: I'm not expecting values from row 2 nor column A in the INDEX so I'd use B3:N6 as my INDEX range. Also, I don't think I'll be looking for a match for the "YEAR" in my MATCH-ranges so the range for the row part would be A3:A6 and B2:N2 for the column range.
 
Upvote 0
Maybe something like this. Where there are drop downs in P3 & Q3 (which could be on another sheet if needed). Either VLOOKUP or INDEX/MATCH will work.
The "overlap of ranges" is a non issue and is actually a requirement with the INDEX/MATCH.

I believe the INDEX/MATCH is a better way to go, based on experts comments I've noted.

Howard


Excel 2012
ABCDEFGHIJKLMNOPQ
1
2YEARJANFEBMARAPRMAYJUNJULYAUGSEPTOCTNOVDECTOTALExpense ItemMo. or Tot.
3FUEL12345678910111278MOBILETOTAL
4RENT131415161718192021222324222
5SHOPPING252627282930313233343536366
6MOBILE373839404142434445464748510
7
8
9510
10510
Sheet3
Cell Formulas
RangeFormula
N3=SUM(B3:M3)
N4=SUM(B4:M4)
N5=SUM(B5:M5)
N6=SUM(B6:M6)
A9=VLOOKUP(P3,$A$3:$N$6,MATCH(Q3,2:2,0),0)
A10=INDEX($A$2:$N$6,MATCH(P3,$A$2:$A$6,0),MATCH(Q3,$A$2:$N$2,0))
 
Last edited:
  • Like
Reactions: vxs
Upvote 0

Forum statistics

Threads
1,216,095
Messages
6,128,795
Members
449,468
Latest member
AGreen17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top