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

What'sUP picture What'sUP · Jul 21, 2012 · Viewed 953.8k times · Source

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

Answer

Yosem picture Yosem · Jul 21, 2012

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