I have a form where I assign a value to a text field
and later attempt to dump this value to a table with a query but it will not dump the value to the table and bombs with a type conversion error.
The code that I use to set the field is:
On the query, I have a field defined as:
This works fine as a select query but will not place this data into my table as a make query.
Do I need to somehow "type cast" this value in order to dump it into my table?
thanks
and later attempt to dump this value to a table with a query but it will not dump the value to the table and bombs with a type conversion error.
The code that I use to set the field is:
Code:
Me.dsc = DLookup("[Desc]", "DUPtbl", "[Item] = Forms![DUPprint]!Item")
On the query, I have a field defined as:
Code:
Desc:forms!DUPprint!dsc AS [Desc]
This works fine as a select query but will not place this data into my table as a make query.
Do I need to somehow "type cast" this value in order to dump it into my table?
thanks