Results 1 to 2 of 2
  1. #1
    hendrikbez is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    138

    How to change words in a column in a table


    I have a table with more than 6000 records, in one of the columns I have this info "5421MAG0001 - 5421MMAG6010" but now see that more than 300 of them has 5883MAG01-00000 in them I want to know how can I change this just to 5421 in all of them,.

  2. #2
    Join Date
    Apr 2010
    Location
    Steamboat Springs
    Posts
    2,529
    You could create an update query to change the value. Assuming your column (field name) is "Desc" and your table name is "Tbl1". Your SQL statement would look like this:

    UPDATE Tbl1 SET Tbl1.[Desc] = "5421"
    WHERE (((Tbl1.Desc)="5883MAG01-00000"));

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 3
    Last Post: 01-01-2014, 11:21 PM
  2. Column Headings - Change before uploading to Access Table
    By smoothlarryhughes in forum Import/Export Data
    Replies: 5
    Last Post: 11-08-2012, 12:33 PM
  3. how to change the words on form status bar?
    By techexpressinc in forum Forms
    Replies: 4
    Last Post: 09-12-2011, 11:24 AM
  4. Replies: 1
    Last Post: 08-18-2011, 08:35 AM
  5. Replies: 10
    Last Post: 11-13-2006, 02:07 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums