The fields I am looking to delete in the table called table_rules
Are MAIN, SUB, RULE, SOURCE, DESTINATION.
Here is the command I am using:
DoCmd.RunSQL ("DELETE table_rules.* FROM table_rules WHERE (((table_rules.RULE)=" & Me.Rule & "));")
I am getting a data mismatch error.
Does someone know...