stopping auto enter in a column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I added a new column to a databse. Now whenever I type data into a cell all
cells in the column fill with the same data.
 
On Mon, 28 Feb 2005 15:05:02 -0800, "stephen anderson" <stephen
I added a new column to a databse. Now whenever I type data into a cell all
cells in the column fill with the same data.

My guess would be that you have added a *textbox* (not a field) to a
*form* (not to a table). This symptom suggests that you have a
continuous Form or Subform, and that you've added an unbound control.

To add a new field to a table, you need to open the Table itself in
design view and add the field. You may then need to open the Form's
Recordsource property in query design view and be sure that the newly
added field is included in the form's recordsource.

John W. Vinson[MVP]
 
Back
Top