简体   繁体   中英

Vlookup partial values in a range

I would like to use a vlookup to return values from a range.

The values I have in the range are of the format

ABCD1234  
ABCC1233

And I want to use just

ABCD  

to return the full ABCD1234 string.

essentially what I want to do is this:

=vlookup("ABCD",LEFT(MYRANGE,4),1,0)

How can I get this to work?

添加通配符应实现您想要的功能:

=VLOOKUP("ABCD*", yourRange, 1, 0)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM