I think I am cursed with this problem. Again I am having an issue with a query refusing to run due to a data type mismatch.
All related fields appear to be set to text, with a field limit of 255. Currently the fields I want to update are all Null, while the fields I am pulling from are, obviously, not.
My problem is that, even when simplifying the query to it's bare minimum, I still get this error.
SQL:
UPDATE TB LEFT JOIN [PBC-ChartOfAccounts]
ON TB.GLAcct = [PBC-ChartOfAccounts].Main_Account
SET TB.AcctDescr = [PBC-ChartOfAccounts]![Name];
Any help would be greatly appreciated.
All related fields appear to be set to text, with a field limit of 255. Currently the fields I want to update are all Null, while the fields I am pulling from are, obviously, not.
My problem is that, even when simplifying the query to it's bare minimum, I still get this error.
SQL:
UPDATE TB LEFT JOIN [PBC-ChartOfAccounts]
ON TB.GLAcct = [PBC-ChartOfAccounts].Main_Account
SET TB.AcctDescr = [PBC-ChartOfAccounts]![Name];
Any help would be greatly appreciated.