Test for null record

  • Thread starter Thread starter ctdak
  • Start date Start date
C

ctdak

Is there any easy way to programatically test for a null record? Testing for
null fields is simple, but I would like to test for a record that has had
nothing entered into it.
 
Access doesn't have a concept of "null record". In fact, I don't understand
why you'd have null records. The only way would be to check that each field
is Null.

Or are you asking about how to identify a new record which hasn't had any
input yet? That would be

Me.NewRecord = True And Me.Dirty = False
 
Yes, I was asking about testing for a new record with no input yet. My
question wasn't phrased the best. You're answer is what I was looking for.
Thanks a lot.
ctdak
 
Back
Top