Newbies gaassist Posted July 7, 2005 Newbies Posted July 7, 2005 Hi everyone, I created this database that allows me to track where a certain item has moved to and on what date. Therefore, there are many date fields for a specific item. What I want to do is print out the item, where it is, and the most recent move it made. Does anyone know how to do this? I don't want all the dates and places it has been to, just the most recent. Thanks.
TerenceM Posted July 7, 2005 Posted July 7, 2005 You should have this set up with two tables, Items and MoveDates, so that you can pull up all MoveDates for a given Item with a relationship between the two tables (Items::ItemID = MoveDates::ItemID). Sort the MoveDates side of this relationship by Date (decending), and the first record pulled up will be the most recent MoveDate. You should avoid creating multiple date fields in the Items table (or a repeating field), because there's no easy way to get data out of them. -terence
Recommended Posts
This topic is 7341 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now