Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function DoesTableExist(MyTable as String) As Boolean
Dim y As TableDef
On Error Resume Next
Set y = CurrentDb.TableDefs(MyTable)
If Err.Number = 0 Then DoesTableExist = True
End Function