Be the first user to complete this post
|
Add to List |
VBA-Excel : Strings Functions – Lcase
Description:
This function converts the input string to lower case.
Format:
LCase(strString)
Arguments:
- strString
- Mandatory
- Type: String
- String whose characters to be converted in Lower case.
Function FnLowserCase() Dim mainString mainString = "SumitJain" MsgBox LCase(mainString) End Function

Also Read About Other String() Functions
INSTR() | InstrREV() | LCase()
Also Read:
- VBA-Excel: Array Functions – IsArray()
- VBA-Excel: String Functions – LTrim()
- VBA-Excel: Date-Time Functions – DatePart()
- VBA-Excel : 3D-Ranges - Working with Multiple WorkSheets At The Simultaneously
- VBA-Excel: Date-Time Functions – Hour(), Minute(), Second()