I have a table of Transactions "tblTransactions" in which more than one row will have the same PO number. Each row has a date field called "POSubDate" I need to know if *any* row has a null in that field.
I tried:
If IsNull(DMin("POSubDate", "tblTransactions", "POno = " & Chr(34) & Me.PONo & Chr(34))) Then ...
But: DMin() returns Null if they are ALL null. But if ANY have a date, it returns the earliest date.
I need a DNull() function!
I tried:
If IsNull(DMin("POSubDate", "tblTransactions", "POno = " & Chr(34) & Me.PONo & Chr(34))) Then ...
But: DMin() returns Null if they are ALL null. But if ANY have a date, it returns the earliest date.
I need a DNull() function!