J
JMG
Hello
Is there a command in VBA so that Access will search for
a table (eg "addresses") inside the database and then
return either a Yes/No value if the table exists?
Ideally, this is what I want to do. Where I am stumped is
in brackets
Sub x()
Dim questions As ??
[question = Does table "addresses" exist?]
IF questions = Yes Then
DoCmd.DeleteObject acTable, "addresses"
Else
....
Thanks in advance
JMG
Is there a command in VBA so that Access will search for
a table (eg "addresses") inside the database and then
return either a Yes/No value if the table exists?
Ideally, this is what I want to do. Where I am stumped is
in brackets
Sub x()
Dim questions As ??
[question = Does table "addresses" exist?]
IF questions = Yes Then
DoCmd.DeleteObject acTable, "addresses"
Else
....
Thanks in advance
JMG