Update

blander

Registered User.
Local time
Today, 13:13
Joined
Aug 8, 2006
Messages
14
Hi Guys,

Two Tables:

module
workbook2



UPDATE workbook2 INNER JOIN [module] ON workbook2.ID = module.ID SET workbook2.bankimpid = module.BAImpID
WHERE ((([BASortCode])=[Sortcode]));

Any ideas why this changes 0 records when some records contain the same data in BASortCode and Sortcode??

Cheers
 
Is the join working and returning data? Try a simple select query to see if you get any records. If workbook2.ID and module.ID are different datatypes the join may not work.
 

Users who are viewing this thread

Back
Top Bottom