I'm not sure if this is going to be an easy fix, but gotta ask. I have this SQL statement that I want to run in VBA. The append part does not bother me, it is the count part that bothers me. Any suggestions?
Code:INSERT INTO tblCountAssign ( CountOfAuto, RV ) SELECT Count(AcctPeriods.Auto) AS CountOfAuto, AcctPeriods.RV FROM AcctPeriods WHERE (((AcctPeriods.RV)=[Forms]![SfrmAssign]![cboRACF])) GROUP BY AcctPeriods.RV;