Mid() Returns a substring from inside a string. : Mid « String Functions « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- String Functions
- Mid
Mid() Returns a substring from inside a string.
Sub strDemo7()
Debug.Print Mid("Test", 2, 2)
End Sub
Related examples in the same category