vlookup and case sensitive data

jillst24

New Member
Joined
Jul 7, 2010
Messages
28
<TABLE style="WIDTH: 93pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=124 border=0><COLGROUP><COL style="WIDTH: 93pt; mso-width-source: userset; mso-width-alt: 4534" width=124><TBODY><TR style="HEIGHT: 15pt" height=20><TD class=xl63 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 93pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15pt; BACKGROUND-COLOR: transparent" width=124 height=20>0018000000Rhi4t</TD></TR><TR style="HEIGHT: 15pt" height=20><TD class=xl63 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 93pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15pt; BACKGROUND-COLOR: transparent" width=124 height=20>0018000000Rhi4T</TD></TR><TR style="HEIGHT: 15pt" height=20><TD class=xl63 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 93pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15pt; BACKGROUND-COLOR: transparent" width=124 height=20>0018000000Rhi4u</TD></TR><TR style="HEIGHT: 15pt" height=20><TD class=xl63 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 93pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15pt; BACKGROUND-COLOR: transparent" width=124 height=20>0018000000Rhi4U</TD></TR></TBODY></TABLE>

I have data in this format. I want to do a vlookup and pull in corresponding revenue for each value but the vlookup isnt recognizing the case sensitivity.....any thoughts????
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
VLOOKUP isn't case sensitive

If your VLOOKUP is

=VLOOKUP(C2,A2:B10,2,0)

then this would be the equivalent but case-sensitive

=INDEX(B2:B10,MATCH(TRUE,INDEX(EXACT(C2,A2:A10),0),0))
 
Upvote 0
The PROPER Command may help you here.

When I applied the PROPER function to your four pieces of data, the first two and the second two looked alike after the case changed.
 
Upvote 0
VLOOKUP isn't case sensitive

If your VLOOKUP is

=VLOOKUP(C2,A2:B10,2,0)

then this would be the equivalent but case-sensitive

=INDEX(B2:B10,MATCH(TRUE,INDEX(EXACT(C2,A2:A10),0),0))
in this scenario is there a way to add a sumif functions if it is listed more than once? in this example i would like to sumif the values in Column B?
 
Upvote 0
I think a SUMIF should work for you:
=SUMIF($A$2:$A$10,C2,$B$2:$B$10)

At least it did when I tested it... let us know if it does not work for you.

Pete
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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