Hi everyone.
I have an sql statment with MANY joins, but the one problem i'm having involves data type. i'm using this:
"tblInsCarrier Inner Join (("**other tables**") On tblInsCarrier.InsAutoID = tblPatientIns.InsID"
the error i get is:
"Type mismatch in expression"
the problem is that the .InsAutoID field is an autonumber field, while .InsID is a text field in a linked table, with the actual table residing on a server and i cannot change it.
is there a way for me to convert it to a numerical field each time, without creating a new table or new field?
Thanks
-jacob
I have an sql statment with MANY joins, but the one problem i'm having involves data type. i'm using this:
"tblInsCarrier Inner Join (("**other tables**") On tblInsCarrier.InsAutoID = tblPatientIns.InsID"
the error i get is:
"Type mismatch in expression"
the problem is that the .InsAutoID field is an autonumber field, while .InsID is a text field in a linked table, with the actual table residing on a server and i cannot change it.
is there a way for me to convert it to a numerical field each time, without creating a new table or new field?
Thanks
-jacob