Hi.
Is there an easy way to move data from one table to another?
I created a table to keep track of work that is requested and still outstanding. As soon as a request is complete there is a check box to check and the request is removed from the outstanding work.
We use this database on a server at work and with all the data in the table it gets kinda slow when more that one person is working on it at the same time.
Will it help if I create a new table (TBL_Archive) to store all the requests that are checked as Done and remove them from the main table (TBL_RequestLog) and is there an easy way to this with a button to basically "Cut and Pase" all checked requests from TBL_RequestLog to TBL_Archive so only the Unchecked requests remain in the main table?
Also, I already created a table (TBL_Archive) in the Back End on the server. How do I get that Table on my Front End now? Or should I just create it in my Front End and just Split the Database again?
Best Regards