Split Data within a column.
From: AndrewT. (AndrewT_at_discussions.microsoft.com)
Date: 03/09/05
- Next message: Ted Allen: "RE: linking consecutive records to previous record in a query"
- Previous message: cnuk: "Find all records that match attributes of current part number"
- Next in thread: Ted Allen: "RE: Split Data within a column."
- Reply: Ted Allen: "RE: Split Data within a column."
- Messages sorted by: [ date ] [ thread ]
Date: Wed, 9 Mar 2005 08:31:05 -0800
I have a database with 146,000 records. I have a field named Zip_10 (text).
It
contains zipcodes with and without zip+4. the data is entered as follows:
48006
48123-0021
48323-0989
48123
48945-2321
All the records with a zip4 have a hypen. I need to make one column zip
(first 5 digits) and one column zip4 with the digits past the hypen.
I have created a new column called Zip4 but it is empty. I am below NOVICE
level on this stuff. I can do it in excel by using the text to column
command but my full database will not load. I truncates at 65,000 records or
so.
UPDATE MyTable
SET Zip_4 = Right$(Zip_10, Len(Zip_10) - (Instr(Zip_10, "- "),
Zip5 = Left$(Zip_10, Instr(Zip_10, "- ")
Any help? The above doesn't work and I got It off this site. (I change the
names to fit my data).
- Next message: Ted Allen: "RE: linking consecutive records to previous record in a query"
- Previous message: cnuk: "Find all records that match attributes of current part number"
- Next in thread: Ted Allen: "RE: Split Data within a column."
- Reply: Ted Allen: "RE: Split Data within a column."
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|