Hi.
Sorry that didn't help. If you simply want to avoid displaying previous records, make your form "data entry" in the property sheet, data.
But I think you need more than that. Do you have a primary key that is unique to a company? Is data entry made at random among many companies, or is data entry organized so that one company is accessed, and then numerous entries are made in relationship to that company?
What kind of records are you trying to create? There's not much new under the sun, so if you're working with sofas, ships, or sealing wax, someone's been there before. Knowing what you're involved in will help some of the
real gurus who look at the threads on this site give you the advice you need.
Let's say these "companies" are individual kennels in a doggie motel. There is one motel. There are seventeen kennels. Six doggies can be housed in six compartments in each kennel. So there can be a total of 102 puppies in the motel at one time. Information about the one motel is easily kept in one table with a primary key, "MotelID". The kennels are identified and described (colorID, with or without toiletID, etc.) in another table, with a primary key called "KennelID" that is related to the motel through the key "MotelID". Each doggie is assigned to one of the kennels...that record is kept in a third table with a primary key named "DoggieID" that is related to the particular kennel through the primary key for the kennel, "KennelID".
So a new doggie comes to town. You have a main form that lets you select the kennel he's going to share; a sub form on the main form lets you choose a vacant compartment, if you like (another table); then you choose to add a new record, assigning the kennel through a combo box, and a compartment through another, assign a new ID to the hot puppie, who can then be traced through the Motel, the kennel and the compartment.
The rules of normalization tell us that the records in one table should fully describe each type of product, thing, etc. The information thus stored does not have to be repeated (should not be repeated) in each record of particular things in the shop, inasmuch as much of the description of each individual thing can be described simply by referring to the category.
You shouldn't populate the field in the new record with the individual's or company's information that you have stored elsewhere...just the key so that the new dog can go in the right kennel.
Yes, I think you need two tables, one for the company and one for the records that are related to that company. They would be related (in a relational database, what else?) in a one-to-many relationship. The "one side table" would hold the company information, and the "many side table" would hold the records that have a common relationship with the company.
You probably already know all this, anyway... Gus Brunston

An old PICKer, using Access2000
padregus@attbi.com