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.
Sub Determine_If_A_Field_Exist(strFieldName As String)
Dim Dbs As Database
Dim Table_Definition As TableDef
Dim fldLoop As DAO.Field
Set Dbs = CurrentDb
For Each Table_Definition In Dbs.TableDefs
For Each fldLoop In Table_Definition.Fields
If fldLoop.Name = strFieldName Then
Debug.Print strFieldName & " exists in " & Table_Definition.Name
Exit For
End If
Next
Next
End Sub