How do I convert the integer value \"45\" into the string value \"45\" in Excel VBA?
Another way to do it is to splice two parsed sections of the numerical value together:
Cells(RowNum, ColumnNum).Value = Mid(varNumber,1,1) & Mid(varNumber,2,Len(varNumber))
I have found better success with this than CStr() because CStr() doesn't seem to convert decimal numbers that came from variants in my experience.