PaulClaudia said:
Hi Doug,
I've just tried that and I have 9 criteria lines that I can populate and
the
query would need to be 16 lines. I have tried just selecting a few of the
columns to test it but I need it to compare all 16 cells in the record.
You can add additional criteria lines (use the Insert menu)
Also if a cell in the old table is blank and then in the new table it has
data it doen't pick any change up.
I was wondering about that. That's a bit more of a pain to correct.
Since they're causing a problem, I'm assuming they're actually Null, not
blank.
Pick a value that will never occur naturally in the field (something like
XXYYXX, or anything you like). For each entry in the Field row of the grid,
change it from
Field Dispatch Date
to
Field Nz([Dispatch Date], "XXYYXX")
Also, change the criteria from
Criteria <>[OLD TABLE].[Dispatch Date]
to
Criteria <>Nz([OLD TABLE].[Dispatch Date], "XXYYXX")
Now, unfortunately, this is going to have the effect of making the field
names in the result Expr0001, Expr0002 and so on. If that's a problem, you
can change it from
Field Nz([Dispatch Date], "XXYYXX")
to
Field DispDate: Nz([Dispatch Date], "XXYYXX")
(or whatever makes sense to you to identify the fields. Unfortunately, you
cannot use the same name as an alias: you cannot put
Field [Dispatch Date]: Nz([Dispatch Date], "XXYYXX")