I have a textbox on a form that spits out individual words comma seperated into a variable HTT
HTT = Replace(Me.BSUM.Text, " ", ",")
It works well, however is not protected against more than one hit on the spacebar between words.
I tried HTT = Replace(Trim(Me.BSUM.Text), " ", ",") but it only worked after the second word had been typed.
Thanks
HTT = Replace(Me.BSUM.Text, " ", ",")
It works well, however is not protected against more than one hit on the spacebar between words.
I tried HTT = Replace(Trim(Me.BSUM.Text), " ", ",") but it only worked after the second word had been typed.
Thanks