Is there a way of using the split function to split a tab separated text line into an array?
M Markm-s Sep 13, 2007 #1 Is there a way of using the split function to split a tab separated text line into an array?
D Douglas J. Steele Sep 13, 2007 #2 varArray = Split(TabSeparatedString, Chr(9)) or varArray = Split(TabSeparatedString, vbTab)