G
Guest
I have a database that has 7 update querys that all update to the same table.
is there a way to string them together with one???
is there a way to string them together with one???
I have a database that has 7 update querys that all update to the same table.
is there a way to string them together with one???
John W. Vinson said:Either create a Macro with seven RunQuery steps, or (better) write a
little
VBA routine (perhaps the Click event of a command button); the code could
use
the Querydef Execute method to execute the seven queries. See the online
help
for Execute.
henrysouth said:I have a database that has 7 update querys that all update to the same table.
is there a way to string them together with one???
db.Execute ("<your action query number one>")
db.Execute ("<your action query number one>")