Be the first user to complete this post

  • 0
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
Lcase
Lcase

Also Read About  Other String() Functions

INSTR()                       |                         InstrREV()                       |                        LCase()

UCase()                      |                         Left()                                |                        Right()

LTrim()                        |                         Mid()                                 |                        Trim()

RTrim()                       |                        Replace()                          |                        Space()

Len()                          |                        StrComp()                        |                        String()



Also Read:

  1. VBA-Excel: Date-Time Functions – TimeSerial() and TimeValue()
  2. VBA-Excel: Date-Time Functions - Timer()
  3. VBA-Excel: Arrays – One Dimension, Dynamic Array
  4. VBA-Excel : Strings Functions – Ucase
  5. VBA-Excel: Create Array using Array() Function