Description:
The LTrim function removes spaces on the left side of a string.
Format:
Ltrim (strMainString)
Arguments:
- strMainString
- Mandatory
- Type: String
- String whose left space needs to be trimmed.
Function FnLTrim() Dim strMainString strMainString = " Sumit Jain " MsgBox "Before : '" & strMainString & "' and after Left Space is trimmed. After :" & LTrim(strMainString) & "'" End Function
Also Read About Other String() Functions
INSTR() | InstrREV() | LCase()
Happy Macroing
![]()
Sumit Jain