Be the first user to complete this post

  • 0
Add to List

VBA-Excel: String Functions – String()

Description:

 The String() function returns a string consisting a repeating characters of specified length.

Format:

String(number,character)

Arguments:
  • number
    • Mandatory
    • Type: Numeric
    • No of times the character to be repeated, means length of the returned string.

  • Character
    • Mandatory
    • Type: Numeric
    • Character to be repeated
Function FnString()

  intNumber = 10

  strChar = "S"

  MsgBox String(intNumber, strChar)

End Function     
String()
String()

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: Cells Ranges Offset - Active Cell
  2. VBA-Excel: Select and Activate Cells - Select
  3. VBA-Excel: Date-Time Functions – FormatDateTime()
  4. VBA-Excel : 3D-Ranges - Working with Multiple WorkSheets At The Simultaneously
  5. VBA-Excel: Date-Time Functions – Month(), Year() and MonthName()