I am running an update query. I had help with another one recently and it worked. This one is a bit different and I tried to mimic the earlier versions.
Earlier working version:
The new version:
The difference being in the Set statement. When I run the code it returns "Enter Parameter Value? Eng_Test_Distinct!Eng2"
Can you help me with my, not so obvious to me, mistake.
Thanks,
Earlier working version:
Code:
UPDATE [IPSS Classes] SET [IPSS Classes].Complete = Yes
WHERE ((([IPSS Classes].IPSSClassID) In (SELECT [Related Entity ID] FROM Breakout_IPSS_End)));
The new version:
Code:
UPDATE [IPSS_Complete_Tbl] SET [IPSS_Complete_Tbl].Engine = [Eng_Test_Distinct].Eng2
WHERE ((([IPSS_Complete_Tbl].[Related Enity ID]) In (SELECT [Related Entity ID] FROM Eng_Test_Distinct)));
;
The difference being in the Set statement. When I run the code it returns "Enter Parameter Value? Eng_Test_Distinct!Eng2"
Can you help me with my, not so obvious to me, mistake.
Thanks,