Results 1 to 2 of 2
  1. #1
    millzerr is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2012
    Posts
    1

    Possible Complex Unmatched Query

    Table: Update
    Fields: Cust_ID, Date, Update_Details

    Basically, I have a table that consists of customers, the date they sent in an update, and details about the update. Since November the 1st, each customer (there's about 28 in total) should have sent in at least one update per day. So, in the update table there should be at least one entry (Sometimes there are more) per customer per day. The problem is that there are some days when the update wasn't recorded in the DB.

    I need to develop a query that shows the customer and date for which there was no update entered.

    Anyone got any advice or ideas? Thanks in advance.

  2. #2
    alansidman's Avatar
    alansidman is offline VIP
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2010
    Location
    Steamboat Springs
    Posts
    2,529
    Code:
    Select YourTableName.CustomerField, YourTableName.UpdateDate, YourTableName.UpdateDetails
    From YourTableName
    WHERE YourTableName.UpdateDate = Null;
    Try this changing the field names and table names to what is in your database.

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

Similar Threads

  1. Unmatched Query Qizard.
    By deepanadhi in forum Queries
    Replies: 7
    Last Post: 05-15-2012, 03:50 AM
  2. Query and unmatched records
    By jlgray0127 in forum Forms
    Replies: 1
    Last Post: 03-19-2012, 05:56 PM
  3. Help! Unmatched Records Query
    By Hberg in forum Access
    Replies: 1
    Last Post: 03-09-2012, 03:41 PM
  4. Replies: 1
    Last Post: 12-08-2011, 01:52 PM
  5. Unmatched query on 1 table
    By tmcrouse in forum Access
    Replies: 7
    Last Post: 06-01-2011, 08:38 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