matrixindicator
IS-IT--Management
I have a recordset counting the fields with a value "is not null". It works fine. I try to use the same sql to count the total of field with no value (is null). This is not working (also the query in design view is not working).
Code:
Set rst = dbs.OpenRecordset("SELECT Count(" & name & ") AS TotKolomNull " _
& "FROM IMPORT " _
& "HAVING (((Count(" & name & ")) Is Null))", dbOpenDynaset)