I have a database that has start dates but no end dates. I am trying to figure out what pieces of inventory were in a certain status on a certain date. The DB looks like this:
Inv # Status Start Date
123 AS 20060101
123 CAN 20060201
123 AS 20060301
If there were end dates, I could just write the formula (Status = AS and Start Date < X < End Date) where X is the date in question. However, with no end dates, it is not so easy. However, the database is set up in this way for a reason, I'm sure, because the start date for the next status is the end date for the one previous. It is obvious this is what's happening, and whoever wrote it could likely easily answer what inventory items were in AS status on date X. Can you?
Inv # Status Start Date
123 AS 20060101
123 CAN 20060201
123 AS 20060301
If there were end dates, I could just write the formula (Status = AS and Start Date < X < End Date) where X is the date in question. However, with no end dates, it is not so easy. However, the database is set up in this way for a reason, I'm sure, because the start date for the next status is the end date for the one previous. It is obvious this is what's happening, and whoever wrote it could likely easily answer what inventory items were in AS status on date X. Can you?