Add-Ins for Ms-Excel | CodeGuru

Add-Ins for Ms-Excel

This article cointain two add-ins. One is for a case-sensitive search (named searchm), and the second is one for a non-case sensitive search (named searchnm). As you read this article, one question raised in your mind might be that, in Excel, there already is a built-in function available, so what is the use of this […]

Written By
CodeGuru Staff
CodeGuru Staff
Aug 16, 2006
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This article cointain two add-ins. One is for a case-sensitive search (named searchm), and the second is one for a non-case sensitive search (named searchnm).

As you read this article, one question raised in your mind might be that, in Excel, there already is a built-in function available, so what is the use of this module or in what way does it differ from built-in search functions that are available in Excel? Do I need one or more function to get the correct answer? That is easy for a programmer to answer, but creates a great headache for normal people.

Example

In two string matches, the built-in search function is thin; it returns an index of matching strings, but what if it doesn’t get a matching pattern? It genereates a #value! error to handle. You need one more function; this results in a complexity in use. The easy method is to use either of these two methods that directly result in either true or false, depending on the string follow pattern. With these add-ins, I provide a method of using it.

Add-Ins for MS Excel to Match Two Case-Sensitive Strings (searchm and searchnm)

In both searchm and searchnm, the functions are as follows:

  • # represents a single digit
  • ? represents a single digit or char
  • * represents a zero or many digits or chars

To perform a non-case sensitive, the add-in name is searchnm. Use Formula 1 to conduct a non-case sensitive search with searchnm.

Formula 1: Using searchnm

1)=searchnm("a*a","aBBBa")                 ' Returns True.
2)=searchnm("[A-Z]" ,"F")                  ' Returns True.
3)=searchnm ("[!A-Z]","F" )                ' Returns False.
4)=searchnm ("a#a","a2a")                  ' Returns True.
5)=searchnm ("a[L-P]#[!c-e]" ,b.aM5b" )    ' Returns True.
6)=searchnm ("B?T*" , BAT123khg" )         ' Returns True.
7)=searchnm ( "B?T*" ,"CAT123khg")         ' Returns False.

In the case above, you may use a cell address that contains a string.

For searchm, the case-sensitive search, use Forumula 2.

Advertisement

Formula 2: Using searchm

 1)=searchm("a*a","aBBBa")                 ' Returns True.
 2)=searchm("[A-Z]" ,"F")                  ' Returns True.
 3)=searchm ("[!A-Z]","F" )                ' Returns False.
 4)=searchm ("a#a","a2a")                  ' Returns True.
 5)=searchm ("a[L-P]#[!c-e]" ,b.aM5b" )    ' Returns True.
 6)=searchm ("B?T*" , BAT123khg" )         ' Returns True.
 7)=searchm ( "B?T*" ,"CAT123khg")         ' Returns False.
 8)=searchm("A*A","aBBBa")                 ' Returns False.
 9)=searchm("[A-Z]" ,"F")                  ' Returns False.
10)=searchm ("A#A","a2a")                  ' Returns False.

In the case above, you may use a cell address that contains a string.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.