INSERT INTO tblCableHistory ( cableCategoryHst, cableTypeHst, CableNumberHst, cableSourceRackHst, cableSrcDescriptionHst, cableDstHst, cableDstDescriptionHist, drawingNumHst, dateAddedHst, miscCableNotesHst, associatedNotesHst, fullCableNumberHst, CableHistID )
SELECT [n] AS Expr1, tblCableInformation.cableType, tblCableInformation.CableNumber, tblCableSourceRack.cableSourceRack, tblCableInformation.cableSouceDescription, tblCableInformation.cableDestination_PK, tblCableInformation.cableDestinationDescription, tblCableInformation.drawingNumber, tblCableInformation.dateAdded, tblCableInformation.miscCableNotes, tblCableInformation.associatedNotes, tblCableInformation.fullCableNumber, tblCableInformation.CableInfoID
FROM tblCableSourceRack INNER JOIN (tblCableDestinationRack INNER JOIN (tblCableCategory INNER JOIN tblCableInformation ON tblCableCategory.cableCategoryID = tblCableInformation.cableCategory_PK) ON tblCableDestinationRack.cableDestinationRackID = tblCableInformation.cableDestination_PK) ON tblCableSourceRack.cableSourceRackID = tblCableInformation.cableSourceRack_PK
WHERE (((tblCableInformation.CableInfoID)=[Forms]![frmCableInformation]![CableInfoID]));