Software Tutorial
Office Software
Steps to find full name in Excel table through keyword fuzzy matching
Steps to find full name in Excel table through keyword fuzzy matching
How to use keywords to perform fuzzy matching to find the full name in an Excel table? PHP editor Youzi will take you through this common problem. In this article, we will provide detailed steps, from preparing data to performing fuzzy match lookups, to help you solve such data processing tasks easily.
1. Take a look at the original data. Column A is the full name of some companies. Enter an abbreviation or keyword at B1 (must be a keyword continuously included in a certain text in column A). C1 returns the full name corresponding to column A.

2. Double-click cell C1, enter the formula =VLOOKUP("*"&B1&"*",A1:A7,1,), and press Enter to return cell C1 to B1. The corresponding full name of the company in column A.
The VLOOKUP function is a commonly used Excel function, used to find the cell content of a certain keyword within a specified range. The specific usage is as follows: ``` =VLOOKUP("*"&B1&"*", A1:A7, 1, ) ``` The meaning of this function is to find the cell containing the content of keyword B1 in the cells in the range A1:A7, and return the content of the first column corresponding to the cell in the A1:A7 range. The `*` in the function represents a wildcard character, which means that the cell content containing the keyword B1 is found in the range A1:A7, regardless of whether there are other characters before and after the keyword. This function returns the content of the first cell that matches the keyword. If no match is found, the function returns #N/A. Please note that the VLOOKUP function matches keywords exactly. If you want to do fuzzy matching, you can use other functions or add other parameters or conditions. Hope the above explanation is helpful to you. If you have further questions, please feel free to ask.
4. This example can also be completed using the LOOKUP function. Double-click cell C1 and enter the formula =LOOKUP(1,0/FIND(B1,A1:A7),A1:A7).

5. Let’s take a look at the LOOKUP operation process. First, FIND(B1,A1:A7) means to search for the content of B1 within A1:A7. If it cannot be found, it will return an error value. If it is found, it will return the position in the text.

6. 0/FIND(B1,A1:A7) This part allows the value returned in the previous step to participate in the operation. If the previous step returns a number, the result will return 0, otherwise it will still return Error value.

7. The final LOOKUP(1,0/(array),A1:A7) part returns the last one in [array] that is less than or equal to 1 (that is, 0 in [array]) The value corresponds to the content of A1:A7, which is the full name.

The above is the detailed content of Steps to find full name in Excel table through keyword fuzzy matching. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Clothoff.io
AI clothes remover
Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
how to add page numbers in word
Aug 05, 2025 am 05:51 AM
To add page numbers, you need to master several key operations: First, select the page number position and style through the "Insert" menu. If you start from a certain page, you need to insert the "section break" and cancel the "link to the previous section"; second, set the "Home page different" to hide the home page number, check this option in the "Design" tab and manually delete the home page number; third, modify the page number format such as Roman numerals or Arabic numerals, and select and set the starting page number in the "Page Number Format" after sectioning.
How to add transitions between slides in a PPT?
Aug 11, 2025 pm 03:31 PM
Open the "Switch" tab in PowerPoint to access all switching effects; 2. Select switching effects such as fade in, push, erase, etc. from the library and click Apply to the current slide; 3. You can choose to keep the effect only or click "All Apps" to unify all slides; 4. Adjust the direction through "Effect Options", set the speed of "Duration", and add sound effects to fine control; 5. Click "Preview" to view the actual effect; it is recommended to keep the switching effect concise and consistent, avoid distraction, and ensure that it enhances rather than weakens information communication, and ultimately achieve a smooth transition between slides.
Complete guide to collaborate in Word and Real Time Co -authorship
Aug 17, 2025 am 01:24 AM
Microsoft Word CollolaBate: How to work with co -authors in Word, edit in real time and manage versions easily.
How to customize the tapes in Office step by step
Aug 22, 2025 am 06:00 AM
Learn to customize the tapes in Office: Change names, hide chips and create your own commands.
How AI Will Give Superpowers To ERP Solutions
Aug 29, 2025 am 07:27 AM
Artificial intelligence holds the key to transforming ERP (Enterprise Resource Planning) systems into next-generation powerhouses—equipping organizations with what can only be described as digital superpowers. This shift isn't just a minor upgrade; i
How to use free Word: all the advantages of the Office online version
Aug 14, 2025 pm 02:30 PM
Do you want to use free Word? Discover here all the advantages that the Microsoft Office online version can offer you for your team.
Get a list of unique values in Excel & extract unique rows
Aug 18, 2025 am 07:39 AM
This is the concluding segment of the Excel Unique Values series, detailing how to retrieve distinct or unique values from a column using formulas, along with customization tips for various data types. You'll also discover how to swiftly generate a d
How to create a table with a repeating header row in Word
Aug 08, 2025 am 04:41 AM
Ensurethefirstrowofyourtablecontainscolumnheaderslike"Name"or"Date"andmaintainspropertablestructurewithoutmergedcells.2.Clickanywhereinthefirstroworselectitentirelybyclickingitsleftedge.3.GototheTableDesigntab(Windows)orTabletab(M


