As I said, I have never use a MVF, have never used Allen Browne's Concat function so I can only make a guess.
"Approved Pesticides: " & ConcatRelated("PesticideName","tblLotPesticides"," LotID = " & [tblLot.LotID])
[tblLot.LotID] is the name of the query field.
First, you shouldn't have the quote at the beginning of the name nor the ampersand.
In the query design view, it would/should look like
Code:
Approved Pesticides: ConcatRelated("PesticideName","tblLotPesticides"," LotID = " & LotID)
Do you have two fields named "LotID" in the query? If you DO have two fields in the query named "LotID", try
Code:
Approved Pesticides: ConcatRelated("PesticideName","tblLotPesticides"," LotID = " & tblLot.LotID)
'NO brackets