It is possible, but only if your variables are PUBLIC and in a CLASS:
' Class1
Public Home0 As String
Public Home1 As String
Public Home2 As String
Public Home3 As String
Public Home4 As String
Public Home5 As String
Public Home6 As String
Public Home7 As String
Public Home8 As String
Public Home9 As String
Then you can use CallByName() like this:
' Module1
Dim C1 As New Class1
Sub Foo_In_Module1()
Debug.Print "Before: Home0 = " & C1.Home0
For i = 0 To 9
CallByName C1, "Home" & i, VbLet, "Yes"
Next i
Debug.Print "After: Home0 = " & C1.Home0
End Sub
Output in my Immediate window:

An example of retrieving those same values with CallByName():
Sub Foo2_In_Module1()
Dim varName As String
For i = 0 To 9
varName = "Home" & i
Debug.Print varName & " = " & CallByName(C1, varName, VbGet)
Next i
End Sub