How Do I Convert an Integer to a String in Excel VBA?

integer, string, type-conversion, vba

Solution

`CStr(45)` is all you need (the Convert String function)

Problem

How do I convert the integer value "45" into the string value "45" in Excel VBA?

Original source