Dale, My name is Ms. S and I am looking for help with probably a similar
issue. I haven't used Access in a long time so please bare with me. I have
2 table with similar information. Table 1 has the most recent records
whereas Table 2 has the newly added columns. I have included the newly
columns in table 1 but now want to pull the data from Table 2 into Table 1 by
searching on UnitID. Is this possible? I am getting frustrated-please help.
Dale Fye said:
Based on your description, I think what you want is something like:
Select [A],
, [C]
From yourTable
WHERE NOT ( = [C] AND [A] <> )
If any of these values can be NULL, then I'd recommend trying:
Select [A], , [C]
From yourTable
WHERE NOT (NZ() = NZ([C]) AND NZ([A]) <> NZ())
--
HTH
Dale
email address is invalid
Please reply to newsgroup only.
KLZA said:
Hi, I'm running a query that includes three fields, A,B, C. I need
all records from the A column, except when B and C are equal to each
other but not equal to A... Can anyone help? This seems fairly
simple but I'm out of answers...