I have some VBA that should allow me to cycle thru a lot of tables in an Access db and do things like this:
strSQL = “ALTER TABLE [” & tdf.Name & “] ADD [Confirmed How? (Code)] TEXT, [OES Notified Y/N] TEXT;”
dbs.Execute strSQL
using DAO. when i run it the code fails and says the table cannot be altered because it is in use by someone else (presumably the function itself). if i debug.print the SQL and run it in the Query window, i do not get this error.
I am not sure what i can do here – is there something i need to do to ‘unlock’ the table? my function is, annoyingly, blocking itself from executing.
TIA!