I need some advice on the best way to approach this.
I have a table called sheets, and I want the user to be able to shift that data to another table depending on the month the user chooses.
Ok, something like this
* Data entered into tblsheets
* User then shifts data from tblsheets to another table depending on the month (hence user will create table, eg tblMay2003, tblJune2003)
* All records in tblsheets will then be deleted. Awaiting the next batch.
—–
Now this was my approach with my limited access knowledge..
* I would create all the month tables beforehand, eg tblMay2003, tblJune2003 etc
* Then create and run the append queries to add the tblsheet data to the month that was created, so in this case, i would run a qryMay2003.
* Running a delete query to delete all records in tblSheets.
All this would be done via the form. Now I’m sure there is a more sensible way to do this, in a more automated fashion. Because if I follow my approach, I’ll have to create all the month tables up till God knows when. eg tblOct2004,… tblJuly2005 etc etc
So I think its more common sense to give the user the approach to create the table then and there. As well as the queries.
Any advice would be appreciated.