Share Bài 146: Cách sử dụng hàm SEARCH trong Excel

hoangngonho

New member
** Cách sử dụng chức năng tìm kiếm trong Excel **

Hàm tìm kiếm trong Excel được sử dụng để tìm vị trí của một chuỗi trong một chuỗi khác.Chức năng tìm kiếm không phân biệt giữa các chữ cái trên và chữ thường và hỗ trợ ký tự đại diện.

** 1.Tìm vị trí của chuỗi trong chuỗi khác **

Hàm tìm kiếm sau đây tìm thấy chuỗi "RO" ở vị trí 4.

`` `
= Search ("Ro", "Đây là chuỗi kiểm tra")
`` `

** 2.Hàm tìm kiếm không phân biệt giữa các chữ cái trên và chữ thường **

Chức năng tìm kiếm sau đây tìm thấy một loạt các chuỗi "Excel", "Excel", "Excel", "Excel", ...

`` `
= Search ("excel", "Đây là chuỗi kiểm tra excel")
`` `

** 3.Chức năng tìm kiếm hỗ trợ Wildcards **

Dấu hỏi (?) Tượng trưng cho một nhân vật.Dấu hoa thị (*) tượng trưng cho một chuỗi trống hoặc nhiều ký tự hơn.

Chức năng tìm kiếm sau đây tìm thấy một loạt các chuỗi "2019", "2018", "2017", ...

`` `
= Tìm kiếm ("*2019", "Đây là chuỗi thử nghiệm 2019")
`` `

**4.Tìm vị trí của một chuỗi từ một vị trí cụ thể **

Hàm tìm kiếm sau đây tìm chuỗi "O" ở vị trí 5.

`` `
= Search ("O", "Đây là chuỗi kiểm tra", 5)
`` `

** 5.Bắt đầu tìm kiếm từ một vị trí cụ thể **

Chức năng tìm kiếm sau bắt đầu tìm kiếm ở vị trí 6 và tìm chuỗi "O" ở vị trí 7.

`` `
= Search ("O", "Đây là chuỗi kiểm tra", 6, 1)
`` `

** Ngoài ra, bạn cũng có thể xem nhiều hướng dẫn Excel khác ở đây. **

** Thẻ: ** #Excel #ExCeltutorial #SearchTin #Office #study
=======================================
**How to use the Search function in Excel**

The Search function in Excel is used to find the position of a string in another string. The Search function does not distinguish between upper and lower case letters and supports wildcards.

**1. Find the position of a string in another string**

The following Search function finds the "RO" string in position 4.

```
=SEARCH("RO", "This is a test string")
```

**2. The Search function does not distinguish between upper and lower case letters**

The following Search function finds a series of strings "Excel", "Excel", "Excel", "Excel", ...

```
=SEARCH("Excel", "This is a test string Excel")
```

**3. The Search function supports wildcards**

The question mark (?) symbolizes a character. The asterisk (*) symbolizes an empty string or more characters.

The following Search function finds a series of strings "2019", "2018", "2017", ...

```
=SEARCH("*2019", "This is a test string 2019")
```

**4. Find the position of a string from a specific position**

The following Search function finds the "O" string in position 5.

```
=SEARCH("O", "This is a test string", 5)
```

**5. Start searching from a specific position**

The following Search function starts searching at position 6 and finds the "O" string in position 7.

```
=SEARCH("O", "This is a test string", 6, 1)
```

**In addition, you can also see many other Excel tutorials here.**

**Tags:** #Excel #ExCeltutorial #SearchTin #Office #study
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top