I'm looking for a way to run a macro if a table exists, if not run a different macro. Something like:
If TableExists "tblONE"
DoCmd.RunMacro ("macONE")
Else
DoCmd.RunMacro ("macTWO")
End If
I see some of these mentioned here but I've been less than successful at getting them to work. Any help would be appreciated.
Thanks,
SKK
If TableExists "tblONE"
DoCmd.RunMacro ("macONE")
Else
DoCmd.RunMacro ("macTWO")
End If
I see some of these mentioned here but I've been less than successful at getting them to work. Any help would be appreciated.
Thanks,
SKK