How do I convert the integer value \"45\" into the string value \"45\" in Excel VBA?
CStr(45) is all you need (the Convert String function)
CStr(45)