Results 1 to 4 of 4
  1. #1
    clownfish1980m is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jul 2015
    Location
    San Antonio TX
    Posts
    9

    Supply Receipt Database

    I searched the forum and can't seem to find what I am looking for.

    I am creating a supply receipt database with one to muchrelationship.
    I have created a suppliertable with the following fields:SupplierID (primary key), Manufacturer.I have created a Supply Item table with the following fields: SupplyID(primary key), Supplier ID, Item.I createda main table with all the information for bringing in a supply item with lookup functions going back to the supplier table and the supply item table.What I would like to do is be able to selectthe manufacturer and have it filter out the supply items so the list is not sobig.Example, if I have vendor X thatsupplies item A, B, & C only then when I bring in an item from vendor X,only items A, B, & C will show up in the item field of the input form.



  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,549
    Make a continuous form of supplies.
    in the header ,put a cbo box of manufacturers. The AFTERUPDATE event will filter the records.....
    Code:
    sub cboBox_afterupdate()
    If isNull(cboBox) then
       Me.filterOn = false
    else
      me.filter = "[manuf]='" & cboBox & "'"
      Me.filterOn = true
    end sub

  3. #3
    orange's Avatar
    orange is offline Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,850

  4. #4
    clownfish1980m is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jul 2015
    Location
    San Antonio TX
    Posts
    9
    How would I connect this to the main table where my employees would enter the supply items they received? Thanks

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

Similar Threads

  1. Grocery receipt template
    By Kitchensock in forum Access
    Replies: 8
    Last Post: 10-06-2015, 03:53 PM
  2. Office Supply Inventory
    By swhennen85 in forum Access
    Replies: 3
    Last Post: 02-01-2013, 08:38 PM
  3. Replies: 3
    Last Post: 09-12-2012, 09:20 AM
  4. Supply and demand query
    By jamtrad in forum Queries
    Replies: 7
    Last Post: 01-26-2012, 02:29 PM
  5. Form to supply parameters to a report
    By Ray67 in forum Reports
    Replies: 11
    Last Post: 07-22-2011, 02:06 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