'strTemp: Your string variable
'intTemp: Your numeric (ie. integer, long, double ...) variable
strTemp = trim(str(intTemp))
Public Function InverseString(ByVal strString As String) As String
Dim strTemp As String
Dim dblLength As Double
strTemp = ""
For dblLength = 1 To Len(strString)
strTemp = Mid(strString, dblLength, 1) + strTemp
Next dblLength
InverseString = strTemp
End Function