I have a report where I wanted to add field [TankerRefNo] from tblCharges_Tanker
I have included the field in the query but now my report only returns values that include an entry in that field not all entries. I have been playing with the InnerJoin to no avail and now I am grey
SELECT tblMainDel.*, tblContractor.NameContr, tblSource.NameSource, tblCharges_Tanker.TankerRefNo
FROM tblSource INNER JOIN (tblContractor INNER JOIN (tblCharges_Tanker INNER JOIN tblMainDel ON tblCharges_Tanker.ID = tblMainDel.TankerRefFK) ON tblContractor.ID = tblMainDel.ContractorFK) ON tblSource.ID = tblMainDel.SourceFK
WHERE (((tblSource.NameSource)<>"Transfer From"));
where is this wrong please