I have a column that has multiple text values within it.
EX:
Code:
Field7864 0 99.4% 48 0 7912 402:50:16199 0 98.5% 3 0 202 23:41:17
I would like to be able to separate each value into a separate column. After a bit of research I was able to find a parsing statement that would work for splitting up first and last names but I was unable to split up more than two values.
EX:
Code:
FirstName: Right$([Name],Len([Name])- InStr(1,[Name],",")-1)LastName: Left$([Name],InStr(1,[Name],",")-1)
Does anyone have any idea on how to successfully split up more than two values?