i have and inner join query that has been working for several years. HOWEVER, 2 OR 3 WEEKS AGO, IT BEGAN GIVING A WRONG SOLUTION TO ONE FIELD. The code is:
DoCmd.SetWarnings (False)
strsql = "UPDATE [Etrade 6473] INNER JOIN Stock_Data ON [Etrade 6473].F1 = Stock_Data.Symbol SET Stock_Data.Current_Val = [Etrade 6473].[f2];"
DoCmd.RunSQL strsql
DoCmd.SetWarnings (True)
All of the records except 1 is updating correctly. These are a list of about 50 Stock prices which I update daily.
I have checked both tables and the one not working is listed correctly.
Is there an error in the code?
Thanks
DoCmd.SetWarnings (False)
strsql = "UPDATE [Etrade 6473] INNER JOIN Stock_Data ON [Etrade 6473].F1 = Stock_Data.Symbol SET Stock_Data.Current_Val = [Etrade 6473].[f2];"
DoCmd.RunSQL strsql
DoCmd.SetWarnings (True)
All of the records except 1 is updating correctly. These are a list of about 50 Stock prices which I update daily.
I have checked both tables and the one not working is listed correctly.
Is there an error in the code?
Thanks