Anyone know what the space character is represented as in VBA?
I'm trying to run a replace function to replace all space characters with underscores.
I'm trying to run a replace function to replace all space characters with underscores.
Code:
Dim newCaption As String newCaption = Replace(caption, " ", "_")
Comment