简体   繁体   中英

VLookup without an exact match

Consider I have following values in Workbook1 (disregard the quotes):

Cell A1 - "C123 - Description"
Cell B1 - "Input"
Cell C1 - "Output"
Cell D1 - "Change"

Now, Workbook2 has

Cell A1 - "C123"

Question:

How do I do a vlookup in Workbook2 for "C123" from Workbook1 since "C123" is not "C123 - Description" ie both the A1 values are not exact?

Please let me know if I need to be more clear with my question

使用通配符:

=VLOOKUP(A1 & " *",Sheet2!A:D,4,FALSE)

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