国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Software Tutorial Computer Software How to use vlookup function in WPS table How to use vlookup function in WPS table

How to use vlookup function in WPS table How to use vlookup function in WPS table

Aug 29, 2024 pm 02:41 PM

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法WPS表格怎么用vlookup函數(shù) wps表格中vlookup函數(shù)的使用方法

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

WPS表格怎么用vlookup函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

Create a help column

WPS表格怎么用vlookup函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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函數(shù) wps表格中vlookup函數(shù)的使用方法

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 of this Website
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to undo multiple times in Photoshop How to undo multiple times in Photoshop Jun 28, 2025 am 12:08 AM

In Photoshop, continuous undoing of multiple steps can be achieved through three methods. First, use the "History" panel and click any step to fall back to this state; second, press the Alt Ctrl Z (Windows) or Option Command Z (Mac) shortcut keys to gradually undo; third, create a "snapshot" to save the key state so that it can be restored at any time. Among them, mastering the "History" panel and undo shortcut keys can meet daily photo editing needs.

How to send a document for signatures with Adobe Acrobat Sign? How to send a document for signatures with Adobe Acrobat Sign? Jul 02, 2025 am 12:44 AM

The steps to send documents for others to sign with Adobe AcrobatSign are as follows: 1. Prepare the final version of the PDF file. If there is no PDF, you can upload it to other formats to automatically convert it, and ensure that the content is correct; 2. Create a new signing process after logging in, add recipient information and set the signature location, assign permissions to each signer, and adjust the signing order; 3. Optionally set email reminders, deadlines and signature methods to improve signing efficiency; 4. Send the document after confirming that it is correct, track the signing status through the system in real time, and download a copy or resend a reminder to complete the signing process.

How to enable the Adobe Acrobat extension in Chrome? How to enable the Adobe Acrobat extension in Chrome? Jul 02, 2025 am 12:51 AM

To solve the problem that Chrome browser cannot preview PDFs online, 1. Install the official Adobe Acrobat extension; 2. Enter the extension page to make sure it is enabled and set to allow incognito mode to run; 3. Turn off the built-in PDF reader option in Chrome settings to set it to be opened by default with Acrobat; 4. If you encounter a prompt "Managed by Organization", you need to contact the administrator to handle it. After completing the above steps, you can directly view PDF files in your browser.

How to flatten a PDF in Adobe Acrobat? How to flatten a PDF in Adobe Acrobat? Jun 30, 2025 am 12:05 AM

Retaining layer information when exporting PDFs can cause compatibility issues, and flattening can resolve this issue. Use the "Pre-press Check" tool of Adobe AcrobatProDC to flatten the PDF with one click, which is suitable for most cases; 1. Open the PDF, click "Tools" > "Pre-press Check" on the right; 2. Click the gear icon, select "Flat Page Content", and confirm and save the file. Advanced users can manually adjust settings: 1. Create a new configuration file and check "Flat Transparency" in "Repair"; 2. Set the resolution and apply the configuration. After flattening, you should pay attention to problems such as larger file size, reduced editing, and text conversion to pictures. It is recommended to keep the original copy for modification.

Why are my lines not showing up in AutoCAD? Why are my lines not showing up in AutoCAD? Jul 01, 2025 am 12:04 AM

Problems are usually caused by layer settings, viewport display, line-type scale, or graphic refresh. 1. Check whether the layer is closed or frozen, and confirm that the color is different from the background; 2. Use ZOOMEXTENTS in the viewport to ensure that the geometry is within the visual range; 3. Adjust the LTSCALE value to fix the linear scale abnormality; 4. Check whether there are color output restrictions in the printing style sheet; 5. Try the REGEN command or switch the visual style to solve the graphics rendering problem. Check the reasons in order to quickly locate the reasons.

How to create a neon effect in Photoshop How to create a neon effect in Photoshop Jul 02, 2025 am 12:16 AM

The key to making neon light effects in Photoshop lies in the matching of layer style and overlay method. The specific steps are as follows: 1. Use "Inner Glow" and "Gradial Overlay" to create basic luminescence, select neon tones and adjust parameters to simulate the brightness of the lamp; 2. Add "Outer Glow" and combine "Gaussian Blur" to enhance the three-dimensional sense of the halo; 3. Improve the texture by adding noise to make the effect closer to the real neon; 4. Use dark backgrounds, projections and atmosphere materials to enhance the overall visual impact.

How to make an image look old in Photoshop How to make an image look old in Photoshop Jul 02, 2025 am 12:47 AM

To make pictures look age-like in Photoshop, you need to imitate the characteristics of old photos and master the key steps. First, add warm tones to increase yellow and red to reduce blue by Color Balance, or use Gradient Map to select brown and yellow gradients and adjust blending mode and opacity. Secondly, adding texture and noise can be used to control the values ??using the Add Noise filter, or overlay old photo textures and set blending mode. Again, make scratches and edge wear to download scratch maps as layers and adjust positions and modes, or use built-in filters to simulate effects. Finally, pay attention to moderate processing, use adjustment layers and masks to facilitate modification, and appropriately reduce contrast to make the picture softer and more natural.

How to colorize a photo in Photoshop using neural filters How to colorize a photo in Photoshop using neural filters Jul 02, 2025 am 12:33 AM

When using neural network filters to color photos in Photoshop, you need to pay attention to key steps and details. First, make sure that the software version supports this function, log in to the Adobe account and download and install the filter plug-in; then open the "Smart Coloring" option, and let the AI ??automatically finish the coloring after downloading the model; then check the results, use the brush tool, local application filters or combined with desaturation to manually color the error area; finally, after confirming that the effect is correct, export and save, it is recommended to keep the two versions of the AI ??layer and the final product. Although the entire process is simple, you need to pay attention to network connection, model loading and post-adjustment techniques.

See all articles