i have some code to empty a table before importing new data to it.
DoCmd.OpenTable "Temp_Targets", acViewNormal, acEdit
DoCmd.RunCommand acCmdSelectAllRecords
DoCmd.RunCommand acCmdDeleteRecord
DoCmd.Close acTable, "Temp_Targets"
how do I conditionally delete, depending on whether the table is...