I am still (painfully) trying to create a sportscard database. I have other questions related to this endeavor in other threads in this forum.
Background:
I need to database to be able to store Order data (items I buy) and Sales data (items I sell).
One Order can later be part of many Sales (i.e. many items can be bought in one Order transaction and be split up later into multiple Sale transactions. The same is true for sales - One Sale transaction can be related to multiple Order transactions. This leads me to create a many to many junction table labeled TBL_InventoryTransactions.
TBL_Sales
PK_Sale ID (auto#)
SaleDate
SaleAmount
TBL_Orders
PK_Order ID (auto#)
OrderDate
OrderAmount
TBL_InventoryTransactions
PK_InventoryID (auto#)
Item Description
FK_OrderID
FK_SaleID
Help:
Access requires that a Sale ID record exist in the TBL_Sales as part of the many to many relation when entering data into the TBL_InventoryTransactions. How can this be handled since there will be times when Orders and subsequently Inventory do not have a corresponding Sale transaction yet?
As always, thank you for all your help for anyone who wishes to jump in. I will add an image or the relation after submitting as I cannot easily find where the manage attachments button is located.