I’m using the following code to count null values in my field called FirstName and display the results in a textbox. Can I add annother field “LastName” and have two results statements displayed in the textbox? I’ve worked on this for hours. Thanks in advance for any suggestions.
intCountNull = DCount("*", "Scrubbed", "FirstName" & " Is Null")
TxtShowNull = intCountNull & " null values found in FirstName"
I’m unsure how well I understand the question. Is this anything like what you’re looking for?