Hi all.
I have an Access table and associated form linked to an Excel Spreadsheet that will be used by about 10 people.
I am wondering what would be the best way to accomplish the following:
1) Allow each individual to filter the data based on about 6 different criterion.
2) Automatically populate a form based on 1.
3) Allow changes by the user that will propagate back to the table that is linked to the Excel spreadsheet.
For 1 and 2, I have created a form with the desired filter parameters that runs a Make Table query (as I do not want to require the dB users to filter things manually).
My questions are
* Am I on the right track? If not, what is the BEST way to do this?
* What do I need to do to accomplish 3?
The main issues I am facing are: a) A newly created table based on a query will not be linked to the "master" data; (Recall that a make table query deletes the table from the last time the query was run, if it exists) b) The solution needs to work with more than one user running a query at the same time.
Example
Suppose the following was the original spreadsheet:
Name Status Priority
Joe S1 P1
Dan S2 P2
Dan S3 P3
...
Bob S4 P1
Now suppose the user only wants to see Name = Dan and Status = S2, the resulting subset after running the create table qurey would then be
Dan S2 P2
The idea is to now let Dan change the Status or Priority without opening the original table and finding the record.
What is the best way to do this?
Thanks in advanced,
BFP
I have an Access table and associated form linked to an Excel Spreadsheet that will be used by about 10 people.
I am wondering what would be the best way to accomplish the following:
1) Allow each individual to filter the data based on about 6 different criterion.
2) Automatically populate a form based on 1.
3) Allow changes by the user that will propagate back to the table that is linked to the Excel spreadsheet.
For 1 and 2, I have created a form with the desired filter parameters that runs a Make Table query (as I do not want to require the dB users to filter things manually).
My questions are
* Am I on the right track? If not, what is the BEST way to do this?
* What do I need to do to accomplish 3?
The main issues I am facing are: a) A newly created table based on a query will not be linked to the "master" data; (Recall that a make table query deletes the table from the last time the query was run, if it exists) b) The solution needs to work with more than one user running a query at the same time.
Example
Suppose the following was the original spreadsheet:
Name Status Priority
Joe S1 P1
Dan S2 P2
Dan S3 P3
...
Bob S4 P1
Now suppose the user only wants to see Name = Dan and Status = S2, the resulting subset after running the create table qurey would then be
Dan S2 P2
The idea is to now let Dan change the Status or Priority without opening the original table and finding the record.
What is the best way to do this?
Thanks in advanced,
BFP