M
MArk
Hi all,
got small problem got one text field that produces 3 text numbers that can
vary in size. ie. 33,41,101
I want to use the split function to create three new fields.
My Split function is currently:
Function SplitPrice(Opening1 As String) As String
SplitOdds = Split(Opening1, ",")(0)
End Function
And in my query when i type:
Price1: Split([Prices])
So I get the first one fine(eg. 33) but how do i get the other 2 numbers
Price2: Split([Prices],2) doesnt work
Price3: Split([Prices],3) doesnt work
Any ideas?
Thanks
got small problem got one text field that produces 3 text numbers that can
vary in size. ie. 33,41,101
I want to use the split function to create three new fields.
My Split function is currently:
Function SplitPrice(Opening1 As String) As String
SplitOdds = Split(Opening1, ",")(0)
End Function
And in my query when i type:
Price1: Split([Prices])
So I get the first one fine(eg. 33) but how do i get the other 2 numbers
Price2: Split([Prices],2) doesnt work
Price3: Split([Prices],3) doesnt work
Any ideas?
Thanks