Hi
I was hoping to find a function in vba similar to char(). The code below does it work! Any idea on how to do the same thing? Thank you very much.
' print garbage char
Sub garbagechar()
Dim x As Integer
For x = 0 To 100
Cells(x, 1) = WorksheetFunction.char(x)
Next x
End Sub