All,
I\'m sure this is a pretty simple SQL query question, but I\'m sure there\'s a good way, and a very BAD way, to do this. Left to my own devices, I\'m liable to end
I think what you're looking for is this:
select id, value, as_of from table_name where as_of = max(as_of) group by id
This says for each id, find the max as_of, and get that value.
This is generic sql. I'm not sure about access. I'm sure if this doesn't work there is something similar.
Good luck! Joe