A family of Microsoft relational database management systems designed for ease of use.
You said: "On my report I am trying to get it to place all the relevant notes at the bottom of each switchboard".
I would use a Subreport for that. Create a subreport on your Notes table. Then add it to the footer of your Switchboard group on your report linked on Note Numbers. That should give you what you want.
On a separate note. It is not a good idea to use spaces in object names. This can come back to haunt you.
Also, I would seriously consider a redesign. Your Document table should be split it into two tables.
ProjectInfo:
ProjectID (PK Autonumber)
ProjectName (Unique index)
SwitchboardID (FK) {Replace Link Field or use the MCCTag}
ClientID (FK to Client Table)
PlantID (FK to Plant table)
DocumentInfo
DocInfoID (PK Autonumber)
ProjectID (FK)
NumberTypeID (FK to Types table)
DocNumber
And you would add a lookup table for the types.
NumberTypes
NumberTypeID (PK Autonumber)
NumberType (JE Project, Client Project, JE Load Schedule, etc.)
This creates a more normalized vertical structure.