Hello all,
I am trying to use the split function to seperate out some information in my table. I keep reading up on how to get this to work but every time i try it its not working. I either get errors or a pop up box asking me to enter in a value and when i do i just get zeros back.
What I have is a report I get sent that is in Excel format. Imported it in to a table in Access so I can do more with it. One of the columns has two pieces of information in it that I want to seperate in to two seperate columns.
What I did was I made a query that runs off of the table. In the query in the Field box I pluged in this code
Im not sure if i am putting this in the wrong spot or i have something typed wrong but any help would be great. Also i have tried various additions by putting a +1 or a -1 in at the end and still nothing.
I am trying to use the split function to seperate out some information in my table. I keep reading up on how to get this to work but every time i try it its not working. I either get errors or a pop up box asking me to enter in a value and when i do i just get zeros back.
What I have is a report I get sent that is in Excel format. Imported it in to a table in Access so I can do more with it. One of the columns has two pieces of information in it that I want to seperate in to two seperate columns.
What I did was I made a query that runs off of the table. In the query in the Field box I pluged in this code
Code:
Expr1: Val(Left([SHIPPER REFERENCE#],InStr([SHIPPER REFERENCE#]," ")))
Comment