Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ACCESS- RELATIONSHIP 2

Status
Not open for further replies.

Kathrynlewis

Technical User
Jun 6, 2002
25
US
I have 157,000 records in an Access database.
And I need one field of information to be consistant.
i.e If I have the name: GAP in 5 records and GAP Inc. on 1 record, and GAP USA on 2 records, How do I make the Gap Inc. and Gap USA = to GAP? Is there a simple way to find all the GAP and fix it in bulk- rather than import it into an excel spreasheet and do it manuallY? All other fields are not consistent. Please help ASAP. Thanks for anyone's suggestions
 
try

update [TABLENAME]
set [TABLENAME].[COLUMNNAME]="GAP"
where [TABLENAME].[COLUMNNAME] like "*GAP*"

 
In Datasheet view for your table, do a Find and Replace using the wildcards mentioned in the previous message.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top