So I'm not really sure what is going on here but in my database I have a table that has 1000 records and 36 of them have [workername] empty. I was trying to run this SQL to select the unassigned, empty [workername] records to assign but nothing populates when I put the code in query design and view mode. I genuinely have no idea why this is not working.
strSQL = "SELECT IntakeID,
caseid,
[Program],
[language]
FROM Intake
WHERE workername Is Null"
Set rs = db.OpenRecordset(strSQL, dbOpenDynaset)
WHERE Len(workername) = 0