I think I simplified my table too much. The first column of the table is a
number. sales rep ID, the columns that follow have info about the sales rep,
i.e. name, date hired, level, rep type, etc... Then there are three columns
that tell who the recruiter was, the manager and the sr. manager. As follows:
SaleRepID Name Hired .... Recruiter Manager Sr. Manager
100 Joe 1/1/01 98 80 32
101 Cathy 2/1/01 99 90 32
All recruiters, managers and sr. managers are listed under sales rep ID with
their recruiter, manager and sr. manager info. I need to run a report that
will show the structure, whcih I can do with only the numbers, but I need it
to also show the employees data. I need it to look up the individuals
detailed data by number.
The report would look like this with the wizard:
32
90
99
101
80
98
100
I need it to show
32 Kevin 1/1/99
90 Sally 2/2/99 etc...
> > I have data that tells me the following: sales rep, recruiter of sales rep,
> > manager of sales rep and sr. manager of sales rep. I need to run a report
[quoted text clipped - 42 lines]
>
> Dorothy
KARL DEWEY - 16 Nov 2007 00:01 GMT
Try this --
SELECT SaleReps.SaleRepID, SaleReps.Name, SaleReps.Hired, SaleReps_1.Name AS
Recruiter, SaleReps_2.Name AS Manager, SaleReps_3.Name AS [Sr Manager]
FROM ((SaleReps LEFT JOIN SaleReps AS SaleReps_1 ON SaleReps.Recruiter =
SaleReps_1.SaleRepID) LEFT JOIN SaleReps AS SaleReps_2 ON SaleReps.Manager =
SaleReps_2.SaleRepID) LEFT JOIN SaleReps AS SaleReps_3 ON SaleReps.Sr_Manager
= SaleReps_3.SaleRepID;

Signature
KARL DEWEY
Build a little - Test a little
> I think I simplified my table too much. The first column of the table is a
> number. sales rep ID, the columns that follow have info about the sales rep,
[quoted text clipped - 71 lines]
> >
> > Dorothy