Trong bài này, chúng ta sẽ học cách sử dụng hàm SEARCH trong Microsoft Excel.

_ Hàm MS-Excel SEARCH trả về vị trí của ký tự đầu tiên của chuỗi con hoặc văn bản tìm kiếm trong một chuỗi. Hàm không phân biệt chữ hoa và chữ thường trong khi tìm kiếm. Không giống như FIND, SEARCH cho phép các ký tự đại diện, như dấu hỏi (?) Và dấu hoa thị (). Dấu hỏi (?) Khớp với bất kỳ ký tự đơn nào và dấu hoa thị () khớp với bất kỳ chuỗi ký tự nào.

Tuy nhiên, trong trường hợp chúng ta muốn tìm một dấu chấm hỏi thực sự (?) Hoặc dấu hoa thị (*), chúng ta nhập triều (~) trước ký tự. Nếu chuỗi con không được tìm thấy trong chuỗi, thì hàm sẽ trả về lỗi #VALUE.

Hàm SEARCH có thể được sử dụng như một hàm phương thức chuỗi mạnh mẽ khi kết hợp với hàm MID ._

Các đối số / cú pháp của hàm là:

image 1 We have dummy data in column A. Column B contains the text which we will search for. And column C has the starting position of the search. And, here in column D, we will enter the SEARCH function.

image 2 1st Example:- In the first example, we will search “AGE” in cell A7.

image 3 Follow the steps given below:- Enter the function in cell C7 =SEARCH(“AGE”,A7,1)

  • Nhấn Enter

image 4 It returns to 1 because “SEARCH” is looking from the first character, and it found AGE beginning from the 1st character. So it gives us 1 here. 2nd Example:- In this example, we will search for “C” and we give the starting number as zero or negative number as the starting position.

image 5 Follow the steps given below:- Enter the function in cell C8 =SEARCH(“c”,A8,-1), Press Enter

image 6 The Function has returned #VALUE error because neither negative nor 0 can be the starting position. 3rd Example:- In this example, we will show you what if we have to find the text which is there multiple times in the string.

image 7 Follow the steps given below:- Enter the function in cell C9 =SEARCH(“o”,A9,5), Press Enter

image 8 The function has ignored the “o” which is at 4th position and the function returns to 9 as the position. Because it ignored the first “o” and started looking from 5th character onwards.

Tuy nhiên, nó trả về vị trí tổng thể của chuỗi. 4 ^ th ^ Ví dụ: – Trong ví dụ này, chúng tôi sẽ tìm kiếm vị trí của các ký tự đại diện trong ô A10.

image 9 Follow the steps given below:- First we’ll look for () asterisk sign, enter the function in cell C10 =SEARCH(“”,A10,1), Press Enter

image 10 The function has returned 1, because we cannot find any wildcard without using tilde. As we use tilde (~) as a marker to indicate that the next character is a literal, we will insert (~) tilde before (*) asterisk.

Nhập hàm này = SEARCH (“~”, A10,1)

  • Bây giờ nó trả về 16 như vị trí

image 11 We can also look for question mark:- Enter the function in same cell C10 =SEARCH(“~?”,A10,1), Press Enter

image 12 We can see that function gave us “37” as the position of (?) question mark. 5th Example:- In this example, we’ll learn how to enter SEARCH function to search “?of?”.

image 13 Follow the steps given below:- Enter the function in cell C11 =SEARCH(“?of?”,A11,1)

  • Nhấn Enter

image 14 We scan to see that function has returned 6 because it matches “soft” which is present in the mid of “Microsoft Excel” string and hence the value is 6. Note:- (?) question mark wildcard denotes any single character. 6th Example:- In this example, we’ll learn another use of wildcard in SEARCH function.

image 15 Follow the steps given below:- Enter the function in cell C12 =SEARCH(“m*t”,A12,1)

Lưu ý: – Trong đối số đầu tiên, chúng ta yêu cầu hàm tìm kiếm chuỗi bắt đầu bằng “m” và kết thúc bằng “t”, và chúng ta sẽ đặt dấu hoa thị (*) ở giữa.

  • Nhấn Enter

image 16 “Microsoft Excel” and it finds there is a string which starts with “M” and ends with “L”. No matter how many characters are there in between and hence it returns 1. Because (*)

ký tự đại diện dấu hoa thị khớp với bất kỳ chuỗi ký tự nào. Vì vậy, đây là cách hàm TÌM KIẾM hoạt động trong các tình huống khác nhau.

https://www.youtube.com/watch?v=HW0QP1JxeuU Nếu bạn thích blog của chúng tôi, hãy chia sẻ blog đó với bạn bè của bạn trên Facebook. Và bạn cũng có thể theo dõi chúng tôi trên Twitter và Facebook. Chúng tôi rất muốn nghe ý kiến ​​của bạn, hãy cho chúng tôi biết cách chúng tôi có thể cải thiện, bổ sung hoặc đổi mới công việc của mình và làm cho nó tốt hơn cho bạn. Viết thư cho chúng tôi tại [email protected]