Hello everybody

What`s the easiest way to convert an Integer to a String. I was thinking of creating a variant variable and using it like shown below :

Dim int1 As Variant
Dim strText As String

int1 = 2
strText = "Some text..." & int1.

But this does not work. It crashes with a type validation error. Can such code work or do I need to use some integerTostring conversion function?

thx, in advance

George Papadopoulos