I could use some suggestions on how to set up part of my database. I have a table with about 21 fields to captures dates that activities were completed for each project. The dates are entered via a form. So for example:
Field1 = Receive Date
Field2 = Review Date
Field3 = Returned results of initial submission
Field4 = Resubmission Date
Field5 = Review Date2
Etc.
What I need to get out of the table is the status of each project. So, for example, if Receive Date is null or if Review Date is not null for a project I need the report to read:
Project Status
Project A “We have not received the submittal”
Project B “We have finished our review”
I tried adding a "status" field to the table that would store the message, and then updating the message via code on the input form as the dates were filled in for each project but couldn't get it to update properly. Then I thought this would be better handled at the query or report level but I'm a litle stuck as to the best method to use. Any suggestions?
Field1 = Receive Date
Field2 = Review Date
Field3 = Returned results of initial submission
Field4 = Resubmission Date
Field5 = Review Date2
Etc.
What I need to get out of the table is the status of each project. So, for example, if Receive Date is null or if Review Date is not null for a project I need the report to read:
Project Status
Project A “We have not received the submittal”
Project B “We have finished our review”
I tried adding a "status" field to the table that would store the message, and then updating the message via code on the input form as the dates were filled in for each project but couldn't get it to update properly. Then I thought this would be better handled at the query or report level but I'm a litle stuck as to the best method to use. Any suggestions?