I have a project management database that I have created for my company that helps us track our IT projects. One of the things that business owners use the DB for is tracking project milestones (e.g. completion of design, coding, QC, etc.) I have a separate milestones table that is linked to the main project table by the project number.
My company works on a monthly IT release schedule and the milestones for each project are based off the release date. IT maintains a table that contains all of the expected dates for each project phase. If a project gets delayed for some reason all of the dates of the milestones get pushed back.
What I would like to do is create a table in my database that would store all of the milestone dates so that as they get updated, each project's milestone dates will get updated.
I'm just trying to wrap my head around the best way to accomplish this. I have separate entries in my tblMilesones for each phase of the project and all I really want to link is the "TargetDate" field to pull the target date out of the Release date table.
Did I explain that well enough for everyone to get a visual? Does anyone have any ideas how this could be accomplished most effectively?
My company works on a monthly IT release schedule and the milestones for each project are based off the release date. IT maintains a table that contains all of the expected dates for each project phase. If a project gets delayed for some reason all of the dates of the milestones get pushed back.
What I would like to do is create a table in my database that would store all of the milestone dates so that as they get updated, each project's milestone dates will get updated.
I'm just trying to wrap my head around the best way to accomplish this. I have separate entries in my tblMilesones for each phase of the project and all I really want to link is the "TargetDate" field to pull the target date out of the Release date table.
Did I explain that well enough for everyone to get a visual? Does anyone have any ideas how this could be accomplished most effectively?