G
Guest
When I run the following query by double clicking on it it works fine.
UPDATE tmpWrkPromoWeek1 INNER JOIN tblPromo ON tmpWrkPromoWeek1.DupeKey =
tblPromo.DupeKey SET tblPromo.Scheduled = "Done";
However, if I use the following to run it from code it does not update any
records. Any ideas?
' Mark the promo as DONE
DoCmd.OpenQuery "qupdPromoCurrent", acNormal, acEdit
Help is appreciated.
UPDATE tmpWrkPromoWeek1 INNER JOIN tblPromo ON tmpWrkPromoWeek1.DupeKey =
tblPromo.DupeKey SET tblPromo.Scheduled = "Done";
However, if I use the following to run it from code it does not update any
records. Any ideas?
' Mark the promo as DONE
DoCmd.OpenQuery "qupdPromoCurrent", acNormal, acEdit
Help is appreciated.