In MS Access 2010, I have TableA related one-to-many to TableB, and TableB related one-to-many to TableC. TableC has one numeric field and one date field (in addition to the lookup field).
FormA's datasource is a select query that joins TableA and TableB. I want to add one additional read-only field to FormA that contains the numeric field from TableC from the row with the most recent date.
What's the best way to go about doing this? Should I create a field in TableB and create an update query (or macro?) that populates that column prior to the join query running?
Thanks.