A family of Microsoft relational database management systems designed for ease of use.
As the others have said, you'd need to use an array or dictionary to achieve this
Dim v(1 To 2) As String
Dim i As Integer
v(1) = "Test"
v(2) = "Hello"
i = 2
Debug.Print v(i) ' => Hello
OR
Dim dict As Object
Dim i As Integer
Set dict = CreateObject("Scripting.Dictionary")
dict("v1") = "Test"
dict("v2") = "Hello"
i = 2
Debug.Print dict("v" & i) ' => Hello
Set dict = Nothing