Be the first user to complete this post

  • 0
Add to List

VBA-Excel: String Functions – RTrim()

Description: 

The RTrim function removes spaces on the right side of a string.

Format:

Rtrim (strMainString)

Arguments:
  • strMainString
    • Mandatory
    • Type: String
    • String whose right space needs to be trimmed.

Function FnRTrim()

    Dim strMainString

    strMainString = "   Sumit Jain  "

     MsgBox "Before : '" & strMainString & "' and after right Space is trimmed. After :'" &                                             RTrim(strMainString) & "'"

End Function 
Rtrim
Rtrim

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 – CDate()
  2. VBA-Excel: Date-Time Functions – Date(), Now() and Time()
  3. VBA Excel - Cells, Ranges and Offset: Refer Range by using A1 Notations
  4. VBA-Excel : Strings Functions – InstrRev
  5. VBA-Excel: Create Array using Array() Function