search
HomeSoftware TutorialComputer SoftwareHow to use vlookup function in WPS table How to use vlookup function in WPS table

How to use vlookup function in WPS form? Recently, a user asked this question. WPS is an easy-to-use office software. You can use various function formulas when editing. So how to use the vlookup function? In response to this problem, this article brings detailed usage methods to share with everyone, let’s take a look.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Question: How to use VLOOKUP function in WPS table? Simple explanation: The VLOOKUP function is used to find a specific value in a specified column and return the corresponding value in another column. Read the details below, PHP editor Xiaoxin will guide you step by step on how to use the VLOOKUP function, including: Syntax and parameters of the VLOOKUP function Examples of using the VLOOKUP function in WPS tables Use techniques of relative references and absolute references to handle the lookup value that does not exist Error

1. Call up method:

1. First select the table position of the output data, then find the formula in the menu bar above and click to enter, then select Insert formula in the upper left corner, Select Enter, enter vlookup in the pop-up menu and click Confirm.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

2. You can also select the table position of the output data, just enter =vlookup.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

2. Basic usage

Parameter introduction:

VLOOKUP (what to look for, where to look for it, and return to the corresponding right side after finding it) Which column of data, precise or fuzzy search)

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Note:

One thing to note is that the help information in Excel also has errors, such as in The description of the fourth parameter of VLOOKUP in the insert function is wrong. Please be careful not to be misled! As shown below:

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

3. Single condition search

In cell E2, enter =VLOOKUP (D2, $A$2: $B$12, 2, 0 )

Parameter explanation:

=VLOOKUP (the salesperson to be found, the data source area containing the salesperson and his sales volume, return to column 2 after finding, precise search)

The first parameter: what to look for (or what to search for), search by salesperson, so enter D2

The second parameter: where to look, the data source area is in column A:B, so enter $A$2:$B$12

The third parameter: which column to return after finding it. What we are looking for is the sales volume. The sales volume is located in column B, which is the second column in the second parameter, so enter 2

Fourth parameter: You need to search accurately here, so enter 0

3. Use the name box to search

Select the A2:B12 area to define it as the search area, in unit E2 Cell input = VLOOKUP (D2, search area, 2, 0)

Note:

Use the name box to grab the data area, so you don’t have to select the area manually (the name box is suitable for workbooks All worksheets in the table)

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

4. Search returns multiple columns of data

Requirements:

The table on the left is the data source area. The corresponding data needs to be retrieved based on the name in the right area. The yellow area is the area where the formula needs to be filled in.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Select the H2:K5 cell range, enter the following formula =VLOOKUP ($G2, $A$2: $E$9, COLUMN (B1), 0) and press Ctrl+Enter key combination.

5. Multi-condition search (one-to-many search)

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

First add a help column in column A, use COUNT and & combination, enter = in A2 C2&COUNTIF($C$2:C2,C2)

Select cells F9:H15 and input =VLOOKUP($F$2&ROW($A1),$A$2:$D$15,COLUMN(B$1),0 ), then press Ctrl+Enter

Finally, in order to avoid incorrect values, add the IFERROR function outside, =IFERROR(VLOOKUP($F$2&ROW($A1),$A$2:$D$15, COLUMN (B$1), 0),)

6. Search from right to left (reverse search)

Requirements:

You need to find the corresponding number according to the given number The name of the salesperson, enter the formula

in the yellow area When the data source format does not allow changes

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Enter =VLOOKUP(E2,IF({ 1, 0}, $B$2: $B$12, $A$2: $A$12), 2, 0)

Here, the IF function reconstructs a region and divides $B$2: $B Put $12 in the first column, $A$2:$A$12 in the second column, find and return the corresponding data

When the first parameter of IF is {1, 0}, it is equivalent to establishing the condition and those that are not true are put together and constructed as a memory array,

1 represents when the condition is true, 0 represents when the condition is not true, {1, 0} forms 2 columns, equivalent to column B and column A Swap positions

7. Interval query

Requirements:

It is necessary to divide the scores into their corresponding grades according to the grade classification rules

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Create a help column

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

Note: Must be in ascending order

The last parameter of this function can be hidden (not entered), Or enter 1

Enter =VLOOKUP(B2, $I$2:$J$5,2) in cell C2. Expand this formula like this: =VLOOKUP(B2, {0, D;60, C; 80, B; 90, A}, 2)

8. Wildcard fuzzy search

This method is only applicable when there is only one value that meets the conditions, otherwise it is better to use SUMIF.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

The role of vlookup: vlookup is used to find another value corresponding to the specified value. For example: find the price of a certain product, the score of a certain classmate in a certain subject, etc.

 vlookup function representation:

 =vlookup (value to be found, search area, column number of the return value, exact match or approximate match)

Parameter description :

1. The value to be found: You can refer to the value of the cell, such as B6; you can also enter it directly, such as a red T-shirt.

2. Search area: used to specify the search range, such as A2:D10.

3. The column number where the return value is located: used to specify which column the return value is in. The column number must start from the specified range,

For example, the specified range is B2:E8, then column B is the first column. If the column number of the return value is 3, then the value is returned from column D.

4. Exact match or approximate match: Exact match is represented by 0 or False, approximate match is represented by 1 or True,

is optional, you can fill it in or not, if not, The default value is an approximate match.

WPS表格怎么用vlookup函数 wps表格中vlookup函数的使用方法

The above is the detailed content of How to use vlookup function in WPS table How to use vlookup function in WPS table. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How much does Microsoft PowerToys cost?How much does Microsoft PowerToys cost?Apr 09, 2025 am 12:03 AM

Microsoft PowerToys is free. This collection of tools developed by Microsoft is designed to enhance Windows system functions and improve user productivity. By installing and using features such as FancyZones, users can customize window layouts and optimize workflows.

What is the best alternative to PowerToys?What is the best alternative to PowerToys?Apr 08, 2025 am 12:17 AM

ThebestalternativestoPowerToysforWindowsusersareAutoHotkey,WindowGrid,andWinaeroTweaker.1)AutoHotkeyoffersextensivescriptingforautomation.2)WindowGridprovidesintuitivegrid-basedwindowmanagement.3)WinaeroTweakerallowsdeepcustomizationofWindowssettings

Does Microsoft PowerToys require a license?Does Microsoft PowerToys require a license?Apr 07, 2025 am 12:04 AM

Microsoft PowerToys does not require a license and is a free open source software. 1.PowerToys provides a variety of tools, such as FancyZones for window management, PowerRename for batch renaming, and ColorPicker for color selection. 2. Users can enable or disable these tools according to their needs to improve work efficiency.

Is Microsoft PowerToys free or paid?Is Microsoft PowerToys free or paid?Apr 06, 2025 am 12:14 AM

Microsoft PowerToys is completely free. This tool set provides open source utilities that enhance Windows operating system, including features such as FancyZones, PowerRename, and KeyboardManager, to help users improve productivity and customize their operating experience.

Is PowerToys part of Windows 11?Is PowerToys part of Windows 11?Apr 05, 2025 am 12:03 AM

PowerToys is not the default component of Windows 11, but a set of tools developed by Microsoft that needs to be downloaded separately. 1) It provides features such as FancyZones and Awake to improve user productivity. 2) Pay attention to possible software conflicts and performance impacts when using them. 3) It is recommended to selectively enable the tool and periodically update it to optimize performance.

How do I download Microsoft PowerToys?How do I download Microsoft PowerToys?Apr 04, 2025 am 12:03 AM

The way to download Microsoft PowerToys is: 1. Open PowerShell and run wingetinstallMicrosoft.PowerToys, 2. or visit the GitHub page to download the installation package. PowerToys is a set of tools to improve Windows user productivity. It includes features such as FancyZones and PowerRename, which can be installed through winget or graphical interface.

What is the purpose of PowerToys?What is the purpose of PowerToys?Apr 03, 2025 am 12:10 AM

PowerToys is a free collection of tools launched by Microsoft to enhance productivity and system control for Windows users. It provides features through standalone modules such as FancyZones management window layout and PowerRename batch renaming files, making user workflow smoother.

Does PowerToys need to be running?Does PowerToys need to be running?Apr 02, 2025 pm 04:41 PM

PowerToys needs to be run in the background to achieve its full functionality. 1) It relies on system-level hooks and event listening, such as FancyZones monitoring window movement. 2) Reasonable resource usage, usually 50-100MB of memory, and almost zero CPU usage when idle. 3) You can set up power-on and use PowerShell scripts to implement it. 4) When encountering problems, check the log files, disable specific tools, and ensure that they are updated to the latest version. 5) Optimization suggestions include disabling infrequently used tools, adjusting settings, and monitoring resource usage.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools