Results 1 to 2 of 2
  1. #1
    Nemacol is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2011
    Location
    WV - USA
    Posts
    3

    Inventory

    I have an inventory database.
    The master sheet is a list of every item that they use including a column for each of the venues that are in use.
    so the fields are:
    item Name
    Description
    Measurement
    vendor
    vendor #
    GL#
    Barcode
    Price
    Stock Location (freezer, cooler, dry stock)
    (now venues)
    V1
    V2
    V3


    Etc...

    I talked about a way to do this different in another thread but decided it was easier to do it this way (esp since this is a temporary system)

    So from this i do a query (something to the effect of)

    Select * from tblMaster
    where V1 IS NOT NULL
    order by Stock Location ASC;

    And this pulls a list of everything that venue 1 uses.

    Now they are asking that i am able to order each section (freezer 10, cooler20, dry stock30) by selves and the order they are on the shelves.

    To do this I am making another table called Itemization: (something to the effect of)
    Stack A-Z (for each shelf tower)
    Shelf A-Z (for each shelf on the tower)
    Item A-Z (for a listing of items on a shelf)

    So item 20CDE is an item in the cooler on the 3rd tower 4th shelf and 5th item over. I like the idea of letters because i can get to 26 with a single byte and there is never an isntance of more than 10 stacks per venue so this has a lot of scale-ability for this place.


    What i am thinking is as they populate the table with 1st and 2nd round inventory they can... in the master sheet... add 20CDE under Venue1 and where ever else it is applicable and then ill be able to pull much the same way i am not. I think it will order correctly.

    My problem is getting the cell to recognize that there are 4 different variables in one cell.

    Thank you for reading. Any advice tips trick. should i go another way with this?

    again, thank you.

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,902
    Four variables in one cell? Multi-value fields will give you headaches. You need a field for each value. It is always easier to concatenate than to split up. Your query can have multiple criteria for filtering and sorting.
    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. Inventory control
    By Mclaren in forum Programming
    Replies: 11
    Last Post: 03-13-2012, 03:15 AM
  2. Inventory
    By Nemacol in forum Database Design
    Replies: 2
    Last Post: 09-13-2011, 05:23 PM
  3. help inventory db
    By mesersmith in forum Database Design
    Replies: 3
    Last Post: 03-10-2011, 11:48 AM
  4. DB For Inventory Control
    By blueraincoat in forum Database Design
    Replies: 4
    Last Post: 03-09-2011, 08:02 PM
  5. Inventory
    By thisandthat in forum Access
    Replies: 3
    Last Post: 03-01-2011, 08:09 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