Any suggestions how to work arround this error message in the following expression where the ON condition contains a minus sign (row source for a dropdown list)
Code:
SELECT pID, pName & ", " & pTitle & " " & pPreName & " (" & pBornYear & "-" & pDiedYear & ")", tbTimesRefs.rShip_n
FROM tbTimesRefs LEFT OUTER JOIN tbPeople
ON (tbTimesRefs.rShip_n = -tbPeople.pID)
WHERE ....