Keep on getting error
you tried to execute a query that does not include the specified expression
My SQL looks as follows:
UPDATE TblField LEFT JOIN TblTempStats ON TblField.DomainCatID = TblTempStats.DomainCatID
SET TblTempStats.EmptyFields = Sum(IIf([fieldname] Is Null,1,0));
Any ideas as to why?