I'm trying to create an editable form of fulfilled orders on my system and am running into problems with creating a form based on this query. The field that I need to update (invoice number) is read-only. I DO understand the reasons for this:
The query takes information from an orders table and a transactions table which have a one to many relationship. I don't want to use any of the transaction fields, but I do need to use a query based on the transactions in an order to filter the order numbers displayed on the form. This summary will tell me all of the fulfilled orders (ie when Quantity Ordered - Quantity Delivered = 0).
I want to create a form based on the above Query but can't seem to do it. I want the final fields of the form to contain: CustomerID, OrderID, PO_Number, InvoiceNumber - all of which are on the orders table, and none of which are on the transactions list
I understand that a query with a 'group by' property is read only, but is there any way to - for example - filter the form results based on this query, or use VBA to get around this.
Sorry if my explanations here aren't so clear, but I'm fairly new to the access terminology, hence the occasional 'whatsitcalled' usage. Thanks in advance!
Any ideas, workarounds?
The query takes information from an orders table and a transactions table which have a one to many relationship. I don't want to use any of the transaction fields, but I do need to use a query based on the transactions in an order to filter the order numbers displayed on the form. This summary will tell me all of the fulfilled orders (ie when Quantity Ordered - Quantity Delivered = 0).
I want to create a form based on the above Query but can't seem to do it. I want the final fields of the form to contain: CustomerID, OrderID, PO_Number, InvoiceNumber - all of which are on the orders table, and none of which are on the transactions list
I understand that a query with a 'group by' property is read only, but is there any way to - for example - filter the form results based on this query, or use VBA to get around this.
Sorry if my explanations here aren't so clear, but I'm fairly new to the access terminology, hence the occasional 'whatsitcalled' usage. Thanks in advance!
Any ideas, workarounds?
Comment