I'm getting this particular error for a couple hours now and I still can't figure out for the life of me what's wrong with my select statement, I'm trying to connect 3 tables.
"SELECT POItem.PO AS 'Purchase_Order', POItem.Qty AS 'Quantity',
POItem.BCurr as 'Currency', POItem.TotalCost, PO.Vendor, Master.Desc1
FROM PO
LEFT JOIN POItem ON PO.ID = POItem.PO AND
INNER JOIN Master ON Master.IPN = POItem.IPN
WHERE POItem.IPN = '" & TextBox1.Text & "'
ORDER BY POItem.PO DESC"
ANDbefore an inner join.