My question regards 'linking' two tables (i.e. clicking on a value in one table will bring you to that same value in another table). Here is a summary of what I have and what I want to do:
Table 1: Purchase Orders
-This table gives information about a respective purchase order (PO) with each PO having a unique ID (PO_Id), which is set as the key. There are other fields giving more information about the PO, however the number is the only relevant field for what I am aiming for.
Table 2: Payment History
-This table currently has three fields: (1) PO_Id (2) Payment_Amount (3) Payment_Date.
I want the PO_Id which is shared in both tables to act as a link between the two. So when the user is viewing the Purchase Orders table, he/she can click on the PO_Id to easily track its respective Payment History.
Any help would be more than appreciated!
Table 1: Purchase Orders
-This table gives information about a respective purchase order (PO) with each PO having a unique ID (PO_Id), which is set as the key. There are other fields giving more information about the PO, however the number is the only relevant field for what I am aiming for.
Table 2: Payment History
-This table currently has three fields: (1) PO_Id (2) Payment_Amount (3) Payment_Date.
I want the PO_Id which is shared in both tables to act as a link between the two. So when the user is viewing the Purchase Orders table, he/she can click on the PO_Id to easily track its respective Payment History.
Any help would be more than appreciated!