>Hello-
>
[quoted text clipped - 4 lines]
>database via ODBC. I have a query that pulls a few columns of data into
>Access (which I just update and export into Excel).
ok...
>But, I need to compare one of the columns of data with the previous days
>data. If it is not the same, move yesterdays data (which is in the "TODAY"
[quoted text clipped - 9 lines]
>in Access? or Excel? In the end, I would like a report that just shows the
>rows that where changed today.
I'd do it in Access, using a query. You can join the table to itself
by SerialNumber; use Date() as a criterion on the first instance of
Column B, Date() - 1 as a criterion on the second, to get today's and
yesterday's dates (you don't skip holidays or weekends?); and put a
criterion of
<> Tablename.ColumnB
on Tablename_1.ColumnB (assuming that you've taken the default alias
for the table name).
This query can then be turned into an Update query, or you can base
your Excel export on it.
John W. Vinson[MVP]