Mike said:
I'm sorry Rick, I am totally lost now.
I created a continuous form as you suggested, but this list all the
parts in the table.
It is the table in form view.
Okay it sounds like you based your form on the table that you want to CHOOSE
parts from. That table should only be used to supply the drop-down list for the
ComboBox.
You need a NEW table that your form is bound to in which you will create records
with the form and then the new table is the one you export to Excel.
I only want to list the parts I select on the main form.
I have tried using the add record command, but this just adds records
to the existing table.
How to do this using zero code has confused me even more.
If it helps to explain the problem, when you purchase on the internet
you select the goods then click a button "add to cart" which creates
a list of the things you select.
This is what I am trying to achieve.
Exactly. That web application would have a list of things that "can be
purchased" off in some big lookup table and another table is being populated
with the list of things that you have "actually purchased". Currently you have
the first table, but do not have the second.
Actually a typical "Order Entry" system would be more involved than this and
have more tables. Normally, there would be a main table with a single record
"per order" and another table that contains multiple records for the items on
each order. These tables would have a common key field or fields that allow you
to relate the items ordered to the specific main order record. Then various
lookup tables would provide selection lists for Customer, Items, etc..