I have the following query:
SELECT Format(CVar([Table1.F1]),"000000") AS TextNumber
FROM Table2 RIGHT JOIN Table1 ON Table2.F1 = Table1.F1
WHERE (((Format(CVar([Table1.F1]),"000000")) Is Not Null) AND ((Table2.F1) Is Null))
ORDER BY Format(CVar([Table2.F1]),"000000");
There are 2 problems.
1...