Data entered in table not showing up in form.

  • Thread starter Thread starter denilynn
  • Start date Start date
D

denilynn

I have a form that will show existing data in the underlying table. For the
first time, I'm entering new clients and they are showing up in the table.
However, the new clients aren't showing up in the form. How can I fix this?
 
denilynn said:
I have a form that will show existing data in the underlying table. For the
first time, I'm entering new clients and they are showing up in the table.
However, the new clients aren't showing up in the form. How can I fix
this?


Check the form's RecordSource property. Chances are that it's a query that
includes criteria that are excluding the new records, or that joins to
another table and your new records are unmatched in that table.
 
On Thu, 4 Feb 2010 14:38:52 -0500, "Dirk Goldgar"

Or the form has a Filter applied. Check the Filter and FilterOn
properties.

-Tom.
Microsoft Access MVP
 
Back
Top