WalterInOz
Registered User.
- Local time
- Tomorrow, 06:49
- Joined
- Apr 11, 2006
- Messages
- 93
I am really struggling with what I expected would not be very difficult. I just don’t get it and need a bit of help/feedback to get me on the right track.
We have stacks and stacks of research papers that need to be organised so that everyone in our team of about 10-12 people can search the database, access the papers electronically and identify the ones that are of particular interest to them.
That shouldn’t be too hard should it? Well, the first bits I found easy, it’s the last bit that I need help with. I currently have a tblRecords with the general info on a paper (title, authors, journal etc). I have a second table with personal details including Logon (username for the network) and a thrird table in which a user can identify a record for the "print list" or "My selection list". This table has a double key (RecordID and Logon).
What I’d like to be able to do is that every user can identify a paper for their own personal list of interest by ticking a Yes/No checkbox on a form with all other details for that paper. That Yes/No selection should than be stored in the 3rd table with RecordID and Logon as combined key so that for each user a unique set of records can be identified.
The username (Logon) is retrieved through Nz(Environ("username").
I have a few questions and would be grateful for advise:
1. Is this a reasonable approach or is there a better way to do this?
2. How do I pass on the values to the middle table?
All data is stored on a server in the back-end.
I have thought about storing the selected values in a separate table in the front-end but that means everyone has to work from the same computer all the time which is not always the case.
Thanks for your advise.
We have stacks and stacks of research papers that need to be organised so that everyone in our team of about 10-12 people can search the database, access the papers electronically and identify the ones that are of particular interest to them.
That shouldn’t be too hard should it? Well, the first bits I found easy, it’s the last bit that I need help with. I currently have a tblRecords with the general info on a paper (title, authors, journal etc). I have a second table with personal details including Logon (username for the network) and a thrird table in which a user can identify a record for the "print list" or "My selection list". This table has a double key (RecordID and Logon).
What I’d like to be able to do is that every user can identify a paper for their own personal list of interest by ticking a Yes/No checkbox on a form with all other details for that paper. That Yes/No selection should than be stored in the 3rd table with RecordID and Logon as combined key so that for each user a unique set of records can be identified.
The username (Logon) is retrieved through Nz(Environ("username").
I have a few questions and would be grateful for advise:
1. Is this a reasonable approach or is there a better way to do this?
2. How do I pass on the values to the middle table?
All data is stored on a server in the back-end.
I have thought about storing the selected values in a separate table in the front-end but that means everyone has to work from the same computer all the time which is not always the case.
Thanks for your advise.