I have a data file that contains multiple records for each employee. I'm trying to build a view of the table that would show me a combined date range for per location. The example below are the fields from the file that i'm trying to combine.
Table Exp:
Employee # Begin Date End Date Location
1 1/1/2005 10/1/2005 BRD
1 10/2/2005 5/31/2007 BRD
1 6/1/2007 3/31/2009 RMC
1 4/1/2009 9/30/2010 RMC
1 10/1/2010 BRD
I'm trying to get a view that would show me:
Employee # Begin Date End Date Location
1 1/1/2005 5/31/2007 BRD
1 6/1/2007 9/30/2010 RMC
1 10/1/2010 BRD
Table Exp:
Employee # Begin Date End Date Location
1 1/1/2005 10/1/2005 BRD
1 10/2/2005 5/31/2007 BRD
1 6/1/2007 3/31/2009 RMC
1 4/1/2009 9/30/2010 RMC
1 10/1/2010 BRD
I'm trying to get a view that would show me:
Employee # Begin Date End Date Location
1 1/1/2005 5/31/2007 BRD
1 6/1/2007 9/30/2010 RMC
1 10/1/2010 BRD
Comment