Hi,
I'm quite new to access and I'm stuck at trying to link records from my table [Users] to different fields of another table [Projects], where these fields have different meaning...
Example:
Table [Users]:
- UserID (primary key)
- Name
- Department
- ...
Table [Projects]:
- ProjectID (primary key)
- Title
- OpenedBy (many to 1 link with Users)
- AssignedTo (many to 1 link with users)
- ...
The problem I'm having here is, that I cannot build queries with field "Name" from Table Users when OpenedBy and AssignedTo are a different user, as access doesn't know which one i'm interested in.
Next, it gets even worse as I add a table [Actions] to the mix, where Actions is linked many to 1 with Projects and each Action is again linked to a User...
How can I resolve this, so that my queries can display the field "Name" instead of fields "OpenedBy" and AssignedTo"?
I don't suppose creating duplicates from the Users table is a good solution as it would take up space and when a new user gets added, they need to get added to multiple tables instead.
Any help is much appreciated!