Question : Split Field in Access Query

I need to split a column in an access query into two columns.  The data comes into the column from a table like this:

884579.24/2357529.36

I would like it split into two columns on the / when the query opens.

Possible??

Answer : Split Field in Access Query



select [fieldname], left([fieldName],instr([fieldName],"/")-1) as firstpart,  mid([fieldName],instr([fieldName],"/")+1) as SecondPart
from tablex
Random Solutions  
 
programming4us programming4us