Results 1 to 15 of 15
  1. #1
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11

    inventory out

    is there a macro that will transfer a group of ingredients out of my inventory table at the same time.And can i do that with in a form.Thank for your help

  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,929
    Not really. An INSERT SELECT query could possibly be executed to grab and copy ingredients records based on some criteria. Yes, the behavior could be initiated on a form. Would need more info to advise on specifics.
    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.

  3. #3
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    Hey j7 I mix rubber compounds,and a rubber compound is made up like a recipe,so I use several chemicals to produce on rubber compound like a cake recipe would to make one cake.puting the chemical into my inventory one at a time is no big deal because I bring them in,in large quantitys but I mix small batches so I use them in much smaller quantity's.but I mix a lot of batches and several different compounds that use's different amounts of each ingredient.i am not really sure if access is the right program.

  4. #4
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    Access is suitable if you want a relational database - if you want tables of chemicals and tables to store the detail info of each mix. Do you have a limited set of 'recipes' or are you experimenting and continually trying new ones? Do you have different mixes for different customers? Do you want to track inventory levels? Maybe a spreadsheet is all you need, don't know your business model so can't really advise.
    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.

  5. #5
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    yes I do add knew compound's(recipe's)as I get new customer's.but once we get a compound spec.in that is the compound has all the property's it will need in what ever service it will be used for,the chemicals and the amount of each chemical will never change.we will use the same recipe over and over for that compound and that customer.sometimes the batch size might change but the ratio of the chemical will not but the lbs for each on will.we use what is called phr that is we start a recipe based on 100 parts of the base polymer we are using for that compound and all of the other chemical are added in parts.this works great in a excel sreed sheet because of the layout.we have formulas in each cell out from the chemical so that know mater what batch size we mix the ratio of each chemical stays the same.but I need a better way to keep up with my inventory for all of those chemical.and I need a way to start keeping more info.on the chemical them selves.such as msds type stuff.and eccess would be great for that part.i hope that I am making just a little bit of since.

  6. #6
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    Access does sound appropriate. Whether or not to create record in database during test phase or wait until specs are established is business decision.
    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.

  7. #7
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    it would be nice to use eccess,i can keep using the spreed sheets for my recipe,s and batches,and say a customer orders 5000 lbs of a compound i can go to my spreed sheet and type in 5000 lbf for the batch size and it will tell me how many lbs of each cheical that i will be using,but i need a way to enter this imfo into eccess so it will take those lbs of chemical as a goup and at the same time out of a inventory table.

  8. #8
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    I indicated in my first thread a way to do that but if you haven't even designed the database, you are a long way from implementing.

    Actually, ideally in a relational database, nothing would be taken 'out of a inventory table'. Transaction records of materials received and used would be summarized to calculate the net on-hand.
    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.

  9. #9
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    may i ask what a insert select query is,i am some what familer with the select query but not the insert part.

  10. #10
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    INSERT is the sql keyword for an append action.

    Google: Access INSERT SELECT

    http://office.microsoft.com/en-us/ac...001032245.aspx
    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.

  11. #11
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    so i could just use a append query?a append query just addes records to the bottum of a table right.

  12. #12
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    Yes, append action adds records. The action keyword is INSERT. However, where will the data to be inserted come from?
    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.

  13. #13
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    My chemical table,i just tried one and it did work but it appended two of my chemicals and their wights twice the other seven was fine.i think my relationship is wrong.if i only append the chemical name and the lbs,i should only need two feilds in the table that i append them to right.and i should be able to use the chemical name for the relationship.the link you posted earlier said somthing about a external data base what is that all about?

  14. #14
    cwh13 is offline Novice
    Windows 8 Access 2010 32bit
    Join Date
    Jan 2013
    Posts
    11
    I do not know if it will help or not but here is a example of the way that i have my recipe,s lay out.
    Attached Files Attached Files

  15. #15
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,929
    That 'externaldatabase' is an optional parameter in the sql syntax. I looked at your spreadsheet. Like I said, you are a long way from implementing (or even thinking about) query. Need to get database structure designed first.
    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. Products Inventory Dilema,Add To Inventory
    By burrina in forum Forms
    Replies: 3
    Last Post: 12-02-2012, 12:10 PM
  2. inventory
    By eiron in forum Access
    Replies: 4
    Last Post: 07-26-2012, 10:17 AM
  3. Inventory
    By Nemacol in forum Database Design
    Replies: 2
    Last Post: 09-13-2011, 05:23 PM
  4. help inventory db
    By mesersmith in forum Database Design
    Replies: 3
    Last Post: 03-10-2011, 11:48 AM
  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