The following code does not work when the field has nothing in it:
Code:
Do Until rstDAO.Fields(2).Value = vbNull
Do Until rstDAO.Fields(2).Value = ""
Do Until Len(rstDAO.Fields(2).Value) < 1
Do Until rstDAO.Fields(2).Value = "Null"
[Code]
How do I properly test to see if the value is Null??? As I step through the code the value comes up as Null but it doesn't pop out of the Do Until statement! Thanks in advance.