Results 1 to 2 of 2
  1. #1
    nejenkins is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jun 2015
    Posts
    14

    Query to add missing data


    can i construct a query to find missing data in a field, then type data into the query data fields and expect them to also be then added automatically into the original tables

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,820
    A query can return records that do not have a given value

    SELECT * FROM table WHERE field <> something;

    or if field is null

    SELECT * FROM table WHERE field Is Null;

    That simple query would be updatable which means could type directly into fields to edit.

    Can also run an UPDATE query to populate field.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

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

Similar Threads

  1. Missing Data Query Problem
    By Jingmei in forum Queries
    Replies: 1
    Last Post: 12-11-2015, 03:43 PM
  2. Update query for missing data?
    By Homegrownandy in forum Access
    Replies: 5
    Last Post: 11-18-2015, 11:41 PM
  3. Query expression builder missing data
    By sangamc in forum Access
    Replies: 5
    Last Post: 09-16-2015, 01:46 PM
  4. Data in query table missing from report
    By nick.muir2 in forum Reports
    Replies: 2
    Last Post: 07-10-2013, 05:18 PM
  5. Need query to find missing field data
    By narendrabr in forum Queries
    Replies: 3
    Last Post: 01-22-2013, 12:48 PM

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