D
Doctor
I have a table of organizations. And I also have a related table of
directors of the organizations. The table is related because often there is
more than one director, but usually not more than 4.
I am trying to create a spreadsheet like export of all of this information.
But this one part is holding me up. If there is more than one director I
would like a new column added to the query like Director_1, Director_2, etc.
What I have now:
tblOrganizations
OrgID
OrgName
tblDirectors
DirID
Name
OrgID
If there are more than one directors I would like the query to output
something like:
OrgID, OrgName, Director_1, Director_2, Director_3
1 Cass Ted Sam John
2 Fremont Alex Dan Mark
How can I accomplish this? Tried crosstabs. Haven't worked yet.
Thanks in advance.
directors of the organizations. The table is related because often there is
more than one director, but usually not more than 4.
I am trying to create a spreadsheet like export of all of this information.
But this one part is holding me up. If there is more than one director I
would like a new column added to the query like Director_1, Director_2, etc.
What I have now:
tblOrganizations
OrgID
OrgName
tblDirectors
DirID
Name
OrgID
If there are more than one directors I would like the query to output
something like:
OrgID, OrgName, Director_1, Director_2, Director_3
1 Cass Ted Sam John
2 Fremont Alex Dan Mark
How can I accomplish this? Tried crosstabs. Haven't worked yet.
Thanks in advance.