Left() Returns a substring from the left side of a string. : Left « String Functions « VBA / Excel / Access / Word






Left() Returns a substring from the left side of a string.

 
Sub strDemo5()
   Debug.Print Left("Test", 2)
End Sub

 

Related examples in the same category

1.Left() - A portion of a string beginning from the left side