D
denise
I need help finding a way to do this. I have the addess in a field were addr1
is followed by a line feed then addr2 portion follows. I can identify the
portion after the line feed with:
SELECT [id] AS id, IIf(InStr([street],Chr(13) &
Chr(10))>0,Mid([street],InStr([street],Chr(13) & Chr(10))+2),"") AS street_2
But how can I put it all together to move addr1 into one field and addr2
into another field? What steps do I need to do?
eg:
"98 CROIX
APT 102"
Thanks for any ideas or advice.
is followed by a line feed then addr2 portion follows. I can identify the
portion after the line feed with:
SELECT [id] AS id, IIf(InStr([street],Chr(13) &
Chr(10))>0,Mid([street],InStr([street],Chr(13) & Chr(10))+2),"") AS street_2
But how can I put it all together to move addr1 into one field and addr2
into another field? What steps do I need to do?
eg:
"98 CROIX
APT 102"
Thanks for any ideas or advice.