I posted a few days ago looking for a solution to this but didn't get much back, however, it was a rather complex way of putting it, so I am hoping by recreating the issue in a simple scenario, I may just get some help
Code:
Sub varTest()
Dim i As Integer
Dim theSum As Integer
i = 1
X = Left("integer", 1) 'returns the letter 'i', the 1st variable's name
Debug.Print i 'at this point, this returns the number 1
Debug.Print X 'at this point, this returns the letter i
theSum = X + i 'Essentially, I would want this to be 1+1
Debug.Print theSum
Debug.Print "The answer I need to get is 2, but it errors"
End Sub