Results 1 to 2 of 2

Thread: [RESOLVED] In need of fast help--Access 2003

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Feb 2008
    Location
    Botswana
    Posts
    107

    Resolved [RESOLVED] In need of fast help--Access 2003

    hey everyone, i need some quick help if anyone has time. i need to create a procedure that will go through a table and change all values that meet a criteria (ie. if a value is "N/A" then change it to "99"). does anyone know any good vba procedures for this? or can the actual access db this on close or something?

    thanks in advance

  2. #2
    Hyperactive Member mrmojorisin's Avatar
    Join Date
    Oct 2007
    Location
    London Town Vocation: Garden Cricket Genuis
    Posts
    439

    Re: In need of fast help--Access 2003

    Hi,

    Do you know much about queries? To solve this problem you could create an update query that updates the field with in your table with '99' where the value is null.

    e.g:

    UPDATE Table1 SET Table1.Numbe = 99
    WHERE (((Table1.Numbe) Is Null));

    Let me know if you need more help?
    Mojo

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width