Question : split column

i need to split a column of text into several new column in a query/view on that table.
split char = chr(10)
how can i do this for lets say item number 1 and 37.

Thanks in advanced

Answer : split column

I would do it more reliable:
1:
2:
3:
4:
5:
6:
7:
8:
Function SplitNGet(s As String, n As Integer, seperator As String)  
  Arr = Split(s, seperator)  
  If n < 1 Or n-1 > UBound(Arr) Then
    splitNGet = ""
  Else
    splitNGet = (Arr(n - 1))  
  End If
End Function
Random Solutions  
 
programming4us programming4us