Hi everybody,
i have a problem trying something ...
It is the following SQL i want to execute from VBA:
It is my effort set entries into a table that are copies of entries from another table. But i do not want to copy the whole record, only two fields.Code:SELECT tbl_Tmp_Conditions.ID, tbl_Tmp_Conditions.ConditionName INTO tbl_Conditions.ConditionID, ConditionName FROM tbl_Tmp_Conditions WHERE tbl_Tmp_Conditions.check = Yes
I'm not sure if that can work in this way.
However, something is wrong with this SQL code:
Run Time Error : -2147467259 (80004005)
Query input must contain at least one table
I don't know whats wrong however and i would greatly appreciate any hints. Maybe it is the way i try to run this query ?
Thanks for reading this post,
....