INSERT INTO tblRunData
SELECT * FROM (
SELECT tblImport.DateTime AS [TimeStamp], tblInstruments.InstrumentID AS InstrumentID, tblImport.Gas AS FieldValue
FROM tblImport, tblTypes INNER JOIN (tblInstruments INNER JOIN tblLocations ON tblInstruments.InstrumentID = tblLocations.InstrumentID) ON tblTypes.TypeID = tblInstruments.TypeID
WHERE (((tblImport.Gas) Is Not Null) AND ((tblInstruments.InstName)=[tblImport].[TransmitterID]) AND ((tblTypes.Type)="Pressure") AND ((tblLocations.LocName)="Gathering"))
UNION ALL
SELECT tblImport.DateTime AS [TimeStamp], tblInstruments.InstrumentID AS InstrumentID, tblImport.Fluid AS FieldValue
FROM tblImport, tblTypes INNER JOIN (tblInstruments INNER JOIN tblLocations ON tblInstruments.InstrumentID = tblLocations.InstrumentID) ON tblTypes.TypeID = tblInstruments.TypeID
WHERE (((tblImport.Fluid) Is Not Null) AND ((tblInstruments.InstName)=[tblImport].[TransmitterID]) AND ((tblTypes.Type)="Liq_P") AND ((tblLocations.LocName)="Gathering"))
);