When I add new a row to a table very often many of the columns are the same
and only dates, amount, and locations change. All other columns remain the
same. I want to build a table with rows made up of the standard information
so that it can be selected, and appended to the new table then only the
additional columns need to be filled in. If the append could pop up a copy
of the form I use now to add to the table that would be great.
I'll make suggestions on two levels.
First, you could have a command button on your Form "Get Template".
This button could run an append query to append a (actually the only!)
record from a Template table to the form's table. You can create and
save the query, and run it from a Macro or code behind the button, and
then move to the newly created record.
On the second level... if you have a great many records with several
fields duplicated, I wonder if you should actually have two tables in
a one-to-many relationship? That way you could have one table with the
common information, and a second table (which you could display and
edit on a Subform) with the dates, amount and location. Relational
databases are all about getting rid of redundancy after all, and you
appear to be storing a lot of information redundantly!