[RESOLVED] Remove $ from text
How to remove $ from listbox? I have text like this in my listbox. I want to remove all
AAAAA$,
BBB$
CCC$
ddd$
I want to remove this symbol $ from text to be display like this
AAAAA,
BBB
CCC
ddd
Code:
For i = 0 To List1.ListCount - 1 'select sheet
If List1.Selected(i) = True Then
Dim sheet As String
sheet = (List1.List(i))
End If
Next
Re: [RESOLVED] Remove $ from text
And there really isn't any reason to continually recreate your variable, so I would move the Dim statement outside of the loop.