Join query using between

21 Views Asked by At

I have made this work before, but I can not find it and do not remember how.

SELECT tblMyData.ID, tblMyData.LineNum, tblBudgetRange.[Budget Name] 
FROM tblMyData 
INNER JOIN tblBudgetRange 
ON tblMyData.LineNum Between ([tblBudgetRange].[fromLine]) And ([tblBudgetRange].[toLine]);

I also tried DLookUp("BudgetName","tblBudgetRange", [LineNum] & "Between fromLine and toLine".

0

There are 0 best solutions below