D
Doug
I did not know how to convert a one field address in EXCEL to a three field
address in ACCESS and I posted a question. The address in EXCEL was one
field and I needed to convert the one field into three fields in ACCESS. For
example, the EXCEL one field address was: 123 W Maple (one field). I needed
to convert this to three fields in ACCESS. Field 1: 123; Field 2: W; Field
3: Maple. I received a reply to my question and I followed the instructions
and everything worked. Except I have only two fields. Field 1: 123; Field
2: W Maple. Now I have a follow up question.
After I ran the update query, the updated ACCESS address was in two fields.
Field one was 123, and Field 2 was W Maple. Do you know how to get the
street direction into a separate field? For example, the address is shown
as 123 W Maple (all one field). I need to convert this to three fields in
ACCESS. Field 1 is 123; Field 2 is W; and Field 3 is Maple.
I used the method that was recommended and I imported the EXCEL worksheet
into ACCESS. And I created the Update query and it worked. But I do not
know how to get the street direction (N,S,E,W) in a separate ACCESS field.
Do you know how I can create three fields in ACCESS from one field?
This is what I used to create two fields from one field:
Run an Update query updating AddressNumber to
Left([ADDRESS], InStr([ADDRESS], " ") - 1)
and Street to
Mid([ADDRESS], InStr([ADDRESS], " ") + 1)
Thank you for your help with this.
Doug
address in ACCESS and I posted a question. The address in EXCEL was one
field and I needed to convert the one field into three fields in ACCESS. For
example, the EXCEL one field address was: 123 W Maple (one field). I needed
to convert this to three fields in ACCESS. Field 1: 123; Field 2: W; Field
3: Maple. I received a reply to my question and I followed the instructions
and everything worked. Except I have only two fields. Field 1: 123; Field
2: W Maple. Now I have a follow up question.
After I ran the update query, the updated ACCESS address was in two fields.
Field one was 123, and Field 2 was W Maple. Do you know how to get the
street direction into a separate field? For example, the address is shown
as 123 W Maple (all one field). I need to convert this to three fields in
ACCESS. Field 1 is 123; Field 2 is W; and Field 3 is Maple.
I used the method that was recommended and I imported the EXCEL worksheet
into ACCESS. And I created the Update query and it worked. But I do not
know how to get the street direction (N,S,E,W) in a separate ACCESS field.
Do you know how I can create three fields in ACCESS from one field?
This is what I used to create two fields from one field:
Run an Update query updating AddressNumber to
Left([ADDRESS], InStr([ADDRESS], " ") - 1)
and Street to
Mid([ADDRESS], InStr([ADDRESS], " ") + 1)
Thank you for your help with this.
Doug