Excel VBA StrConv Function
StrConv stands for “String Conversion.” We can convert the supplied string to the specified format using this VBA functionVBA FunctionVBA functions serve the primary purpose to carry out specific calculations and to return a value. Therefore, in VBA, we use syntax to specify the parameters and data type while defining the function. Such functions are called user-defined functions.read more. You need to understand that we can use this formula as a VBA function only, not as an Excel worksheet function. This article will tour detailed examples of the “VBA StrConv” formula.
Look at the syntax of the StrConv function.
String: This is nothing but the text we are trying to convert.
Conversion: What kind of conversion do we need to do? We have a wide variety of options. Here, below is the list of conversions we can perform.
- vbUpperCase or 1: This option converts the supplied Text value to upper case character. It works similarly to the UCASE function. For example, if you supply the word “Excel,” it will convert to “EXCEL.”vbLowerCase or 2: This option converts the supplied Text value to lowercase character in excelLower Case Character In ExcelThere are six methods to change lowercase in excel - Using the lower function to change case in excel, Using the VBA command button, VBA shortcut key, Using Flash Fill, Enter text in lower case only, Using Microsoft word.
- read more. It works similarly to the LCASE function. For example, if you supply the word “Excel,” it will convert to “excel.”vbProperCase or 3: This option converts the supplied Text value to the proper case character. Every first character of the word converts to uppercase. All the remaining letters convert to lowercase. For example, if you supply the word “excEL,” it will convert to “Excel.”vbUniCode or 64: This option converts the string to Unicode code.vbFromUnicode or 128: It converts the string Unicode to the default system code.
Even though we have several other options with the Conversion argument above, three are good enough for us.
You are free to use this image on you website, templates, etc., Please provide us with an attribution linkHow to Provide Attribution?Article Link to be HyperlinkedFor eg:Source: VBA StrConv (wallstreetmojo.com)
Examples of StrConv Function in VBA
Example #1
Now, look at the example of converting the string to the UPPER CASE character. We are using the word “Excel VBA” here. Below is the VBA codeVBA CodeVBA code refers to a set of instructions written by the user in the Visual Basic Applications programming language on a Visual Basic Editor (VBE) to perform a specific task.read more.
Code:
Sub StrConv_Example1()
Dim TextValues As String
Dim Result As String
TextValues = "Excel vba"
Result = StrConv(TextValues, vbUpperCase)
MsgBox Result
End Sub
It will convert the string “Excel VBA” to upper case.
Run this code using the F5 key or manually and see the result.
Example #2
Now, take a look at the same string with lowercase conversion. Below is the code.
Sub StrConv_Example2()
Dim TextValues As String
Dim Result As String
TextValues = "Excel vba"
Result = StrConv(TextValues, vbLowerCase)
MsgBox Result
End Sub
It will convert the string “Excel VBA” to a lowercase.
You can run it manually or through excel shortcut keyExcel Shortcut KeyAn Excel shortcut is a technique of performing a manual task in a quicker way.read more F5. Below is the result.
Example #3
Now, take a look at the same string with proper case conversion. Below is the code.
Sub StrConv_Example3()
Dim TextValues As String
Dim Result As String
TextValues = "Excel vba"
Result = StrConv(TextValues, vbProperCase)
MsgBox Result
End Sub
It will convert the string “Excel VBA” to a proper case. Every first letter of the string is upper case. Moreover, it converts every letter after space to uppercase. All the remaining characters convert to lowercase. Below is the result of the same.
Example #4
Now, look at the Unicode character’s example. Look at the below code.
It will print all the Unicode characters to the immediate window.
In ASCII code, “E” Unicode is 69, “x” Unicode is 120, and so on. Like this, using VBA StrConv, we can convert the string to Unicode.
Recommended Articles
This article has been a guide to VBA StrConv. Here, we learn how to use the VBA StrConv function to convert the supplied string to the specified format, along with practical examples and a downloadable Excel template. Below you can find some useful Excel VBA articles: –
- VBA OperatorsVBA ChartsVBA Boolean OperatorVBA End