lezawang
Well-known Member
- Joined
- Mar 27, 2016
- Messages
- 1,805
- Office Version
- 2016
- Platform
- Windows
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.
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.
Code:
' print garbage char
Sub garbagechar()
Dim x As Integer
For x = 0 To 100
Cells(x, 1) = WorksheetFunction.char(x)
Next x
End Sub