Question : If table does not exist then

I need a aline of vba code to fo teh following

If table tbl"CustomerConcernsCopy" does not exist then run query "qry_CustomerConcerns"

Answer : If table does not exist then

Dim td As TableDef
On Error Resume Next
Set td = CurrentDb.TableDefs("tbl_CustomerConcernsCopy")
On Error GoTo 0
If td Is Nothing Then CurrentDb.Execute "qry_CustomerConcerns"
Random Solutions  
 
programming4us programming4us