Vlookup Text LEFT of Semicolon

jski21

Board Regular
Joined
Jan 2, 2019
Messages
133
Office Version
  1. 2016
Platform
  1. Windows
Happy Holidays Team,

Can't seem to determine why this formula isn't working. I'm attempting to lookup all text to the left of a semicolon and return a value. Value is #N/A:

=VLOOKUP(LEFT(Q4,FIND(":",Q4,1)-1),Q4:S4,3,FALSE)


Section 4.xlsx
QRS
1#N/A
2
3
4Transformation Initiative:200,000
4-1
Cell Formulas
RangeFormula
S1S1=VLOOKUP(LEFT(Q4,FIND(":",Q4,1)-1),Q4:S4,3,FALSE)



Thanks for the second set of eyes and your help.


jski
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You're stripping the colon off Q4 then trying to match it to Q4, which has a colon, so it doesn't match. Not really sure what you are really doing, but perhaps you need a wildcard:

Excel Formula:
=VLOOKUP(LEFT(Q4,FIND(":",Q4,1)-1)&"*",Q4:S4,3,FALSE)
 
Upvote 0
Solution
You're stripping the colon off Q4 then trying to match it to Q4, which has a colon, so it doesn't match. Not really sure what you are really doing, but perhaps you need a wildcard:

Excel Formula:
=VLOOKUP(LEFT(Q4,FIND(":",Q4,1)-1)&"*",Q4:S4,3,FALSE)
Bingo RoryA. It's been a 'wild' day. Thanks. Merry Christmas!
 
Upvote 0
Merry Christmas to you too! :)
 
Upvote 0

Forum statistics

Threads
1,213,520
Messages
6,114,099
Members
448,548
Latest member
harryls

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