Jason, you're going to have to use code. There are a lot of ways to do what
you want, but here's the simplest.
I'll explain how to code 1 table, just repeat it 12 times. I'm going to
assume that the 12 tables are months for this example.
First go to the form's design mode. To show the property sheet press F4.
1. Put a command button on your form. Name it cmdJanuary and set it's
caption to JAN.
2. Click on the JAN button. Then on the property sheet choose the EVENT tab.
3. On the ON CLICK event, drop down the arrow and choose EVENT PROCEDURE,
then click on the ... dots.
4. The code window should open with the cursor at the proper place to start
typing.
5. Type ME.Recordsource = "tblJanuary" (use your table name here for
January)
6. Close the code window, go to form view and try it out.
If it works, repeat steps 1 thru 5 eleven more times to add buttons for your
other eleven tables.
HTH, UpRider