Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tracking Changes

Status
Not open for further replies.

StarhawkGamer

Programmer
Jul 7, 2008
17
US
I've got a database where I get records about agent performance. Part of the database includes who their supervisor is. I need to be able to track who their supervisor was on any given date or date range and assign only the records from the date(s) they were assigned to the supervisor to the supervisor to track performance of the supervisor. What is the best way to try and accomplish this? The primary data source in question does not report the supervisor information along with the agent information, but other sources do report this.
 
I would create and maintain a table with a structure like:
[tt][blue]
tblAgentSupervisors
=======================
AgSuID
AgentID
SupervisorID
EffectiveDate
[/blue][/tt]

You could add an EndDate to make querying a little easier.

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top