Hi,
First I am runing this on MS Access 2007 on a Win7(64 bit) machine, but I ran this on an XP machine(32 bit) and got the smae thing. The error I ma getting is: "you tried to a ssign the NUll value to a varible the is not a Variant data type". How ever I am not assiging to an variables and every field in both tables is data type text. And all I am doing is runing this update query to update the fields in one table to the fields in anothr table. I even tryed doing a part at a time and on any part of this I get the same thing. I ran this yesterday with different fields and had no problem.
Here is the query:
Code:
UPDATE [Copy Of dbo_APVEN] INNER JOIN [ADDRESS UPDATE] ON [Copy Of dbo_APVEN].VENDORID=[ADDRESS UPDATE].VENDORID
SET [Copy Of dbo_APVEN].[TEXTSTRE1] = [ADDRESS UPDATE].[TEXTSTRE1], [Copy Of dbo_APVEN].[TEXTSTRE2] = [ADDRESS UPDATE].[TEXTSTRE2],
[Copy Of dbo_APVEN].[TEXTSTRE3] = [ADDRESS UPDATE].[TEXTSTRE3],[Copy Of dbo_APVEN].[TEXTSTRE4] = [ADDRESS UPDATE].[TEXTSTRE4],
[Copy Of dbo_APVEN].[NAMECITY] = [ADDRESS UPDATE].[NAMECITY],[Copy Of dbo_APVEN].[CODESTTE] = [ADDRESS UPDATE].[CODESTTE],
[Copy Of dbo_APVEN].[CODEPSTL] = [ADDRESS UPDATE].[CODEPSTL],[Copy Of dbo_APVEN].[IDGRP] = [ADDRESS UPDATE].[IDGRP];
Any ideas I would really appreciate.
Thank you