Aug 26, 2005 1 #1 Brogrim Technical User Jul 28, 2000 184 IE I have a field with the address entered in as 101 Duke street I want to divide this field into house no and address. is there a query I can use to break this string
I have a field with the address entered in as 101 Duke street I want to divide this field into house no and address. is there a query I can use to break this string
Aug 26, 2005 #2 lupins46 MIS Feb 19, 2004 2,509 GB HNum:left([Address],instr([Address]," ")-1) HStreet:mid([Address],instr([Address]," ")+1) Upvote 0 Downvote
Aug 26, 2005 #3 earthandfire Programmer Mar 14, 2005 2,924 GB Just to throw a spanner in the works - what if the address is: The Green Cottage Duke Street or The Green Cottage 101 Duke Street addresses don't, unfotunately, all follow the pattern: number streetname Hope this helps. Upvote 0 Downvote
Just to throw a spanner in the works - what if the address is: The Green Cottage Duke Street or The Green Cottage 101 Duke Street addresses don't, unfotunately, all follow the pattern: number streetname Hope this helps.