G
Guest
I have found in VBA that a simple assignment statement to convert a numeric to a string results in a blank character being added to the beginning of the string
e.g
intNum = 23
strResult = str$(intNum
result is strResult = " 234" instead of "234
Why does VBA do this? What is the easiest way (least code) to strip the beginning blank
ctdak
e.g
intNum = 23
strResult = str$(intNum
result is strResult = " 234" instead of "234
Why does VBA do this? What is the easiest way (least code) to strip the beginning blank
ctdak