G
Guest
SELECT DISTINCT Left([COSTS].[Account],4) AS TEST, costs.Amount
FROM [L-LINE-ITEMS], costs
WHERE (((Left([COSTS].[Account],4)) Not In (SELECT [L-LINE-ITEMS].
FROM [L-LINE-ITEMS], costs
WHERE (((Left([COSTS].[Account],4)) Not In (SELECT [L-LINE-ITEMS].
Code:
FROM [L-LINE-ITEMS])));
Does not return any records even thougth there are records in table "costs"
that are not in "L-LINE-ITEMS"? What am I doing? Or not?
Thanks