Greetings. This problem is a bit more involved so I will lay it out in full:
I have two tables:
Table: InventoryTypes
Field: ID, txtType, txtModel, txtStockCount,
txtCurrentInventoryCount
Description: List of inventory equipment types and
associated info
Table: Inventory
Field: ID, txtAssign, comboType, comboModel, txtSerialNo
Description: Association between the txtAssign value and
type and model information.
Problem:
Each InventoryType can be used multiple times in the Inventory table. The Inventory.Assignment value is a phone extension in this case. I need to update the InventoryTypes.CurrentInventoryType value with a count of those type and model combinations in the Inventory table.
Any thoughts on how I can accomplish this?
Thanks.
I have two tables:
Table: InventoryTypes
Field: ID, txtType, txtModel, txtStockCount,
txtCurrentInventoryCount
Description: List of inventory equipment types and
associated info
Table: Inventory
Field: ID, txtAssign, comboType, comboModel, txtSerialNo
Description: Association between the txtAssign value and
type and model information.
Problem:
Each InventoryType can be used multiple times in the Inventory table. The Inventory.Assignment value is a phone extension in this case. I need to update the InventoryTypes.CurrentInventoryType value with a count of those type and model combinations in the Inventory table.
Any thoughts on how I can accomplish this?
Thanks.