Trouble with a date textbox and button on a form.

  • Thread starter Thread starter Stephen Russell
  • Start date Start date
S

Stephen Russell

I am trying to mimmic a date/time in a table like another on an existing
form.

I have a column in the db CalledIn and when I reference it on a form. My
field shows a little green triangle in the upper left corner.

I don't do much witn access so any ideas?

TIA
 
This is Access' way of telling you that there is a potential problem. If
you hover your mouse over the triangle, you should see a dropdown. Drop it
to see the problem and suggested resolution.
 
Thanks Pat. I saw it. It says that it's an invalid column.

So I have to guess how the columns are delivered to the form?
 
Look at the form's RecordSource property. It should be either a table name,
a query name or actual SQL.

If it's a table, does the field exist in the table?

If it's a query or SQL, is the field been included in the query?
 
Back
Top