ive found using controls as a query text will do that.
try Clng(forms![add time]![Po_ID])
or
CStr(forms![add time]![Po_ID])
this can help it show.
(or add it as a query parameter)
Oddly, Chr$(39) is an apostrophe.
Take a look at the SQL for the query.
It'll be something like
Obviously [Forms]![add time]![PO_ID] is not a field in your table.Code:SELECT [Forms]![add time]![PO_ID], PO_engineers.PO_ID FROM PO_engineers;
Maybe
would work.Code:SELECT Eval(Forms![add time]!PO_ID) AS PONUM, PO_engineers.PO_ID FROM PO_engineers;
Can you just use the PO_ID field from table?
PONUM: [PO_ID]
Is that form open and if so, is the 39 value showing or an apostrophe in that field?
thanks a lot
Bulzie I didn't see your reply until now. This is on an unbound form for the most part. I was having other errors when it was bound.