Leslie,
I think we need to determine a couple of things.
First, forms do not contain any data. They are just a "window", an
organized way to view data.
All data is store in Fields. A Field contains one "atomic" piece of data
A Table is a collection of Fields. A Table contains Fields neccessary to
describe the attributes of an entity.
A Database is a collection of Tables. A Databse contains the tables
necessary to house the data necessary to a business need. A Relational
Database is one type of Database. There are others, but since Access is an
application builder that uses relational databases, we will only discuss them.
Now note I did not say Access is a database. It is, in fact, not a
database. Access can use almost any relational database engine available.
It is written to use the Microsoft Jet database engine in it's native format
when using an Access mdb. If you use and Access adp (Access Database
Project), the native engine is SQL Server; however, the mdb format is not
limited to Access,
Now with all that background done. If you are going to be entering,
retrieving, and editing data, the first thing you need is to define a table,
determine what data elements you need for the table, and define the fields
necessary to support the data needs. Then after you have a table, you create
a form to work with the data.
So, go back to the start and design your table. Then post back, and we will
work on the form part.
Good Luck.