I have a table that is used to track mail history. One of the ways it gets updated is through an INSERT INTO query. The problem I have is this, when I try to run the query I get an application error(Division by Zero). It doesn't make any sence to me. I can see the datasheet of the query no problem. The syntax is as follows:
INSERT INTO tblMailHistory (CustID) SELECT DISTINCT CustID FROM tblReport;
tblReport is a temporary table used for geerating reports and things. Any help would be greatly appreciated. Thanx
INSERT INTO tblMailHistory (CustID) SELECT DISTINCT CustID FROM tblReport;
tblReport is a temporary table used for geerating reports and things. Any help would be greatly appreciated. Thanx