imterpsfan3
Programmer
I have a text field that delimits using a tab character. For example, the field will have one data item, a tab character, another data item, another tab character.
What I want to do is iterate through the field character by character and when I get to a tab character I add the data between the tab characters to another field.
I've tried to use something like this to no avail:
What I want to do is iterate through the field character by character and when I get to a tab character I add the data between the tab characters to another field.
I've tried to use something like this to no avail:
Code:
For i = 1 To Len(text1)
if Mid$(Text1,i,1) = vbTab Then
'do some processing
end if
Next