| Be the first user to complete this post  | Add to List | 
VBA-Excel : Strings Functions – Left
Description:
Returns a string containing number of characters specified by the user, starting from left side of the input string.
Format:
Left(strMainString,intLength,)
Arguments:
- strMainString
- Mandatory
- Type: String
- String whose characters to be returned.
 - intLength
- Mandatory
- Type: Numeric
- Number of characters to be returned.
- If number specified is greater than the string length then entire string is returned.
 
 
Function FnLeft() Dim mainString mainString = "SumitJain" intLength = 4 MsgBox "The first" & intLength & " characters from left are ' " & Left(mainString, intLength) & " '" End Function

Also Read About Other String() Functions
INSTR() | InstrREV() | LCase()
Happy Macroing

Sumit Jain
Also Read:
- VBA-Excel: Date-Time Functions – WeekDay() and WeekDayName()
- VBA-Excel : 3D-Ranges - Working with Multiple WorkSheets At The Simultaneously
- VBA-Excel: Date-Time Functions – FormatDateTime()
- VBA-Excel : Strings Functions – InstrRev
- VBA-Excel: Date-Time Functions – Month(), Year() and MonthName()
 
    