@David44Coder -
In the most common relationship, you have a table of something that is independent i.e. it is a thing unto itself. Then you have another table of things that are dependent because they are part of something that holds them, encapsulates them, gathers them... a one-thing/many-things type of relationship. (It's the most common type.)
In the attachment to #3 you show us drives on a computer based on drive letter. Your list is almost a table of the drives currently in your computer. Yes, I said "almost." To get all the way there, you need the computer name, call it "XYZ". Suppose you want to expand your list to include at least one more computer in your data/storage inventory. To express the relationship of multiple drives to multiple computers, you would need one more column that contains the computer name - such as "XYZ" for each drive that is on that computer. That would be the final field needed to develop a formal relationship.
Now, if you had another computer, call it "ABC", and you had a list of drives for it, you would need TWO tables - one for computers and the other for drives. You would have two records (at first) in the computer table - "ABC" and "XYZ" - plus whatever is specific to the computers (BUT NOT THE DRIVES). Things like RAM size, RAM speed, clock speed, number of cores, number of threads, etc. would be properties of the computers. To set up the formal relationship, you need a second table that lists ALL of the things you listed in your exhibit in #3 post, plus one more field - the name of the computer where that drive is found. Each record in the drives table would include the name of the computer hosting the drive.
NOTE: Purists would assign each computer a unique ID number and use the ID number in the drives table rather than the name. Since this example is for explanation purposes, I will keep it simple.
Now you would have what you need to declare a formal relationship. The drives table would be dependent to the computers table. The use of the computer name in the drives table ties a given drive's record to a given computer's record and establishes a parent/child relationship. In the right kind of query, you would say that the COMPUTER and DRIVE tables could have a JOIN ON ComputerName.
Access exploits this relationship by knowing that you have placed the computer ID key in TWO places - once in the computers table and once in each related record in the drives table. By updating the Relationships list that is one of the Access Tools to show the computer name in the computer table and also in the drives table, you make it a formal relationship that Access can exploit where appropriate.
Does that help you with relationships?