Hello,
i need some major help. i think that the only way to obtain the result required is through VBA code (which i struggle with because I can't get it %-)
ok, the objective for this project is:
To eliminate manual look-up on a physical chart the correct set of guitar programming codes combinations for each order to save time and mistakes.
what is going on now:
1. An order is placed for a guitar (standard / bare) with options (of which are Body [Fadal] options) that customers can purchase to get a specific type of guitar. this is done in the accounting system. the orders for guitars are extracted and put into MS Access to be able to do this other function that the accounting system cannot do.
2. MS Access has a few tables:
1) GuitarHeader (invoicenumber and guitaritem)
2) GuitarDetails (invoicenumber and optionitems)
one(guitaritem)-to-many(optionitems, just Body options)
3) GuitarItems (GuitarID and GuitarItem)
4) FinishOptions (OptionID, OptionItem and OptionCategory (identifies which set are the Body options)
5) ProgrammingCodes (CodeID and Codes)
6) ProgramCodes (GuitarID, OptionID, CodeID, and ComboID)
the ComboID (combination identifier) I put so the end-user can identify the set of records from the other sets because the same OptionItem can be used in various set of combinations for the guitaritme.
there is a main form and a sub-form.
The main form's record source is the GuitarItems table.
The sub-form's record source is the ProgramCodes table.
Linked on GuitarItem (or GuitarID)
anyway, no one really does the combination sets to the guitars and the reason why the form is created for the end-user to use to enter the information and identify the sets for the various combinations.
basic query linking the tables together gives me the result as requested. the issue is that i need the result to ONLY show the set of combinations where that set of Optionitem(s) are the ONLY ones on the order, not all where they match (this is what I get now as the result).
NOTE: all the guitar programming codes (the set / combinations) must be in one field so that all of the codes are displayed as one record per order.
Hope i have provided enough information here for someone to understand what I need help with.
i need some major help. i think that the only way to obtain the result required is through VBA code (which i struggle with because I can't get it %-)
ok, the objective for this project is:
To eliminate manual look-up on a physical chart the correct set of guitar programming codes combinations for each order to save time and mistakes.
what is going on now:
1. An order is placed for a guitar (standard / bare) with options (of which are Body [Fadal] options) that customers can purchase to get a specific type of guitar. this is done in the accounting system. the orders for guitars are extracted and put into MS Access to be able to do this other function that the accounting system cannot do.
2. MS Access has a few tables:
1) GuitarHeader (invoicenumber and guitaritem)
2) GuitarDetails (invoicenumber and optionitems)
one(guitaritem)-to-many(optionitems, just Body options)
3) GuitarItems (GuitarID and GuitarItem)
4) FinishOptions (OptionID, OptionItem and OptionCategory (identifies which set are the Body options)
5) ProgrammingCodes (CodeID and Codes)
6) ProgramCodes (GuitarID, OptionID, CodeID, and ComboID)
the ComboID (combination identifier) I put so the end-user can identify the set of records from the other sets because the same OptionItem can be used in various set of combinations for the guitaritme.
there is a main form and a sub-form.
The main form's record source is the GuitarItems table.
The sub-form's record source is the ProgramCodes table.
Linked on GuitarItem (or GuitarID)
anyway, no one really does the combination sets to the guitars and the reason why the form is created for the end-user to use to enter the information and identify the sets for the various combinations.
basic query linking the tables together gives me the result as requested. the issue is that i need the result to ONLY show the set of combinations where that set of Optionitem(s) are the ONLY ones on the order, not all where they match (this is what I get now as the result).
NOTE: all the guitar programming codes (the set / combinations) must be in one field so that all of the codes are displayed as one record per order.
Hope i have provided enough information here for someone to understand what I need help with.