** Cách sử dụng chức năng xlookup trong excel **
Xlookup là một chức năng mới trong Excel 365 đang thay thế VLookup.Nó dễ sử dụng hơn và có một số lợi thế so với Vlookup.
## Cách sử dụng chức năng xlookup
Cú pháp của chức năng XLookup là:
`` `
= Xlookup (tra cứu_value, lookup_array, return_array, [match_type], [search_mode])
`` `
* `Lookup_Value` là giá trị bạn đang tìm kiếm.
* `Lookup_array` là phạm vi của các ô mà bạn đang tìm kiếm giá trị.
* `return_array` là phạm vi của các ô mà bạn muốn trả về nếu tìm thấy giá trị.
* `match_type` là tùy chọn.Nó chỉ định làm thế nào hàm sẽ phù hợp với giá trị tra cứu.Giá trị mặc định là 1, có nghĩa là khớp chính xác.
* `search_mode` là tùy chọn.Nó chỉ định xem chức năng có nên tìm kiếm Tra cứu_array từ trái sang phải hay phải sang trái hay không.Giá trị mặc định là 1, có nghĩa là từ trái sang phải.
### ví dụ
Ví dụ sau đây sử dụng chức năng XLookup để tìm mức lương của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, E3: E9)
`` `
Hàm trả về giá trị 50000, là mức lương của nhân viên với ID 79.
Ví dụ sau đây sử dụng chức năng XLookup để tìm họ của một nhân viên có ID 79.
`` `
= Xlookup (79, B3: B9, D3: D9)
`` `
Hàm trả về giá trị "Smith", là tên cuối cùng của nhân viên có ID 79.
### Không tìm thấy
Nếu giá trị bạn đang tìm kiếm không được tìm thấy trong Lookup_array, hàm XLookup sẽ trả về giá trị lỗi #n/a.
Bạn có thể sử dụng tham số thứ tư của hàm XLookup để chỉ định giá trị nào sẽ trả về nếu không tìm thấy giá trị.
Ví dụ: công thức sau trả về văn bản "không tìm thấy" nếu giá trị 28 không được tìm thấy trong Lookup_array.
`` `
= Xlookup (28, B3: B9, "Không tìm thấy")
`` `
### Trận đấu gần đúng
Theo mặc định, chức năng XLookUP thực hiện một kết hợp chính xác.Tuy nhiên, bạn có thể sử dụng tham số thứ ba của chức năng XLookup để chỉ định rằng nên thực hiện một trận đấu gần đúng.
Ví dụ: công thức sau trả về giá trị 80 nếu giá trị 85 không được tìm thấy trong Lookup_array.
`` `
= Xlookup (85, B3: B7, C3: C7, -1)
`` `
Giá trị -1 cho hàm XLookup tìm giá trị nhỏ hơn tiếp theo.Trong trường hợp này, giá trị nhỏ hơn tiếp theo là 80.
### nhìn lên bên trái
Trong các phiên bản trước của Excel, bạn có thể sử dụng các chức năng chỉ mục và khớp để tra cứu các giá trị ở bên trái.Tuy nhiên, chức năng Xlookup làm cho điều này dễ dàng hơn nhiều.
Ví dụ: công thức sau sử dụng chức năng XLookup để tra cứu tên đầu tiên của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, C3: C9)
`` `
Hàm trả về giá trị "John", là tên đầu tiên của nhân viên có ID 79.
### Trả về nhiều giá trị
Hàm Xlookup cũng có thể được sử dụng để trả về nhiều giá trị.
Ví dụ: công thức sau đây trả về tên, họ và tiền lương của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, C6: E12)
`` `
Hàm trả về các giá trị "John", "Smith" và 50000, là tên, họ và tiền lương của nhân viên với ID 79.
## Phần kết luận
Chức năng Xlookup là một chức năng mới mạnh mẽ trong Excel giúp bạn dễ dàng nhìn lên
=======================================
**How to use the XLOOKUP function in Excel**
XLOOKUP is a new function in Excel 365 that is replacing VLOOKUP. It is easier to use and has some advantages over VLOOKUP.
## How to use the XLOOKUP function
The syntax of the XLOOKUP function is:
```
=XLOOKUP(lookup_value, lookup_array, return_array, [match_type], [search_mode])
```
* `lookup_value` is the value you are looking for.
* `lookup_array` is the range of cells where you are looking for the value.
* `return_array` is the range of cells that you want to return if the value is found.
* `match_type` is optional. It specifies how the function should match the lookup value. The default value is 1, which means an exact match.
* `search_mode` is optional. It specifies whether the function should search the lookup_array from left to right or right to left. The default value is 1, which means from left to right.
### Examples
The following example uses the XLOOKUP function to find the salary of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, E3:E9)
```
The function returns the value 50000, which is the salary of the employee with the ID 79.
The following example uses the XLOOKUP function to find the last name of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, D39)
```
The function returns the value "Smith", which is the last name of the employee with the ID 79.
### Not found
If the value you are looking for is not found in the lookup_array, the XLOOKUP function will return the #n/a error value.
You can use the fourth parameter of the XLOOKUP function to specify what value to return if the value is not found.
For example, the following formula returns the text "Not found" if the value 28 is not found in the lookup_array.
```
=XLOOKUP(28, B3:B9, "Not found")
```
### Approximate match
By default, the XLOOKUP function performs an exact match. However, you can use the third parameter of the XLOOKUP function to specify that an approximate match should be performed.
For example, the following formula returns the value 80 if the value 85 is not found in the lookup_array.
```
=XLOOKUP(85, B3:B7, C3:C7, -1)
```
The value -1 tells the XLOOKUP function to find the next smaller value. In this case, the next smaller value is 80.
### Look up on the left
In previous versions of Excel, you could use the INDEX and MATCH functions to look up values on the left. However, the XLOOKUP function makes this much easier.
For example, the following formula uses the XLOOKUP function to look up the first name of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, C3:C9)
```
The function returns the value "John", which is the first name of the employee with the ID 79.
### Return multiple values
The XLOOKUP function can also be used to return multiple values.
For example, the following formula returns the first name, last name, and salary of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, C6:E12)
```
The function returns the values "John", "Smith", and 50000, which are the first name, last name, and salary of the employee with the ID 79.
## Conclusion
The XLOOKUP function is a powerful new function in Excel that makes it easy to look up
Xlookup là một chức năng mới trong Excel 365 đang thay thế VLookup.Nó dễ sử dụng hơn và có một số lợi thế so với Vlookup.
## Cách sử dụng chức năng xlookup
Cú pháp của chức năng XLookup là:
`` `
= Xlookup (tra cứu_value, lookup_array, return_array, [match_type], [search_mode])
`` `
* `Lookup_Value` là giá trị bạn đang tìm kiếm.
* `Lookup_array` là phạm vi của các ô mà bạn đang tìm kiếm giá trị.
* `return_array` là phạm vi của các ô mà bạn muốn trả về nếu tìm thấy giá trị.
* `match_type` là tùy chọn.Nó chỉ định làm thế nào hàm sẽ phù hợp với giá trị tra cứu.Giá trị mặc định là 1, có nghĩa là khớp chính xác.
* `search_mode` là tùy chọn.Nó chỉ định xem chức năng có nên tìm kiếm Tra cứu_array từ trái sang phải hay phải sang trái hay không.Giá trị mặc định là 1, có nghĩa là từ trái sang phải.
### ví dụ
Ví dụ sau đây sử dụng chức năng XLookup để tìm mức lương của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, E3: E9)
`` `
Hàm trả về giá trị 50000, là mức lương của nhân viên với ID 79.
Ví dụ sau đây sử dụng chức năng XLookup để tìm họ của một nhân viên có ID 79.
`` `
= Xlookup (79, B3: B9, D3: D9)
`` `
Hàm trả về giá trị "Smith", là tên cuối cùng của nhân viên có ID 79.
### Không tìm thấy
Nếu giá trị bạn đang tìm kiếm không được tìm thấy trong Lookup_array, hàm XLookup sẽ trả về giá trị lỗi #n/a.
Bạn có thể sử dụng tham số thứ tư của hàm XLookup để chỉ định giá trị nào sẽ trả về nếu không tìm thấy giá trị.
Ví dụ: công thức sau trả về văn bản "không tìm thấy" nếu giá trị 28 không được tìm thấy trong Lookup_array.
`` `
= Xlookup (28, B3: B9, "Không tìm thấy")
`` `
### Trận đấu gần đúng
Theo mặc định, chức năng XLookUP thực hiện một kết hợp chính xác.Tuy nhiên, bạn có thể sử dụng tham số thứ ba của chức năng XLookup để chỉ định rằng nên thực hiện một trận đấu gần đúng.
Ví dụ: công thức sau trả về giá trị 80 nếu giá trị 85 không được tìm thấy trong Lookup_array.
`` `
= Xlookup (85, B3: B7, C3: C7, -1)
`` `
Giá trị -1 cho hàm XLookup tìm giá trị nhỏ hơn tiếp theo.Trong trường hợp này, giá trị nhỏ hơn tiếp theo là 80.
### nhìn lên bên trái
Trong các phiên bản trước của Excel, bạn có thể sử dụng các chức năng chỉ mục và khớp để tra cứu các giá trị ở bên trái.Tuy nhiên, chức năng Xlookup làm cho điều này dễ dàng hơn nhiều.
Ví dụ: công thức sau sử dụng chức năng XLookup để tra cứu tên đầu tiên của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, C3: C9)
`` `
Hàm trả về giá trị "John", là tên đầu tiên của nhân viên có ID 79.
### Trả về nhiều giá trị
Hàm Xlookup cũng có thể được sử dụng để trả về nhiều giá trị.
Ví dụ: công thức sau đây trả về tên, họ và tiền lương của một nhân viên với ID 79.
`` `
= Xlookup (79, B3: B9, C6: E12)
`` `
Hàm trả về các giá trị "John", "Smith" và 50000, là tên, họ và tiền lương của nhân viên với ID 79.
## Phần kết luận
Chức năng Xlookup là một chức năng mới mạnh mẽ trong Excel giúp bạn dễ dàng nhìn lên
=======================================
**How to use the XLOOKUP function in Excel**
XLOOKUP is a new function in Excel 365 that is replacing VLOOKUP. It is easier to use and has some advantages over VLOOKUP.
## How to use the XLOOKUP function
The syntax of the XLOOKUP function is:
```
=XLOOKUP(lookup_value, lookup_array, return_array, [match_type], [search_mode])
```
* `lookup_value` is the value you are looking for.
* `lookup_array` is the range of cells where you are looking for the value.
* `return_array` is the range of cells that you want to return if the value is found.
* `match_type` is optional. It specifies how the function should match the lookup value. The default value is 1, which means an exact match.
* `search_mode` is optional. It specifies whether the function should search the lookup_array from left to right or right to left. The default value is 1, which means from left to right.
### Examples
The following example uses the XLOOKUP function to find the salary of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, E3:E9)
```
The function returns the value 50000, which is the salary of the employee with the ID 79.
The following example uses the XLOOKUP function to find the last name of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, D39)
```
The function returns the value "Smith", which is the last name of the employee with the ID 79.
### Not found
If the value you are looking for is not found in the lookup_array, the XLOOKUP function will return the #n/a error value.
You can use the fourth parameter of the XLOOKUP function to specify what value to return if the value is not found.
For example, the following formula returns the text "Not found" if the value 28 is not found in the lookup_array.
```
=XLOOKUP(28, B3:B9, "Not found")
```
### Approximate match
By default, the XLOOKUP function performs an exact match. However, you can use the third parameter of the XLOOKUP function to specify that an approximate match should be performed.
For example, the following formula returns the value 80 if the value 85 is not found in the lookup_array.
```
=XLOOKUP(85, B3:B7, C3:C7, -1)
```
The value -1 tells the XLOOKUP function to find the next smaller value. In this case, the next smaller value is 80.
### Look up on the left
In previous versions of Excel, you could use the INDEX and MATCH functions to look up values on the left. However, the XLOOKUP function makes this much easier.
For example, the following formula uses the XLOOKUP function to look up the first name of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, C3:C9)
```
The function returns the value "John", which is the first name of the employee with the ID 79.
### Return multiple values
The XLOOKUP function can also be used to return multiple values.
For example, the following formula returns the first name, last name, and salary of an employee with the ID 79.
```
=XLOOKUP(79, B3:B9, C6:E12)
```
The function returns the values "John", "Smith", and 50000, which are the first name, last name, and salary of the employee with the ID 79.
## Conclusion
The XLOOKUP function is a powerful new function in Excel that makes it easy to look up