E
efandango
I have a table/Query:
SELECT tbl_Points.Point_ID, tbl_Points.Run_point_Venue,
tbl_Points.Run_point_Address, tbl_Points.Run_Point_Postcode,
tbl_Points.Run_point_Door_No, tbl_Points.Run_point_Address_New
FROM tbl_Points;
Where I want to cut and copy(update) the door numbers from [Run_point_Address]
into [Run_point_Door_No] and [Run_point_Address_New], respectively.
The door numbers are always at the start of the address and can be up to 3
digits long. Sometimes they can have a single letter suffix like this: ###a,
and sometime they can be in this format 12-13 Acacia Avenue. But if these
last two formats are too complex to do, I will settle for just doing those
types manually.
SELECT tbl_Points.Point_ID, tbl_Points.Run_point_Venue,
tbl_Points.Run_point_Address, tbl_Points.Run_Point_Postcode,
tbl_Points.Run_point_Door_No, tbl_Points.Run_point_Address_New
FROM tbl_Points;
Where I want to cut and copy(update) the door numbers from [Run_point_Address]
into [Run_point_Door_No] and [Run_point_Address_New], respectively.
The door numbers are always at the start of the address and can be up to 3
digits long. Sometimes they can have a single letter suffix like this: ###a,
and sometime they can be in this format 12-13 Acacia Avenue. But if these
last two formats are too complex to do, I will settle for just doing those
types manually.