I am rather new to the programming arena, so please excuse the elementary nature of my question(s). In the query below, the class module returns the required fields for a specific item. The ultimate goal for this query is to return any records from the items that have a null value in a required field.

rsfields.Open "SELECT * FROM " & lvItem _
& " WHERE IsNull (" & cla1.GetORISFieldsList(lvItem.Text) & ")", _
cnWS, adOpenStatic, adLockReadOnly

I know the class module is working properly, but I think my ordering may be incorrect. I am getting the following error message: "Wrong number of arguments used with function in query expression...)

Any tips and/or suggestions would be greatly appreciated.