D
Duane Hookom
I recommend against using domain aggregate functions in reports. However, try:
=DCount("LastName","[tblPositions]","IsNull(LastName) = 0")
Or create a query from tblPositions where LastName is not null. Replace the
table names with the query name
=DCount("*","qselHasLastName")
=DCount("LastName","[tblPositions]","IsNull(LastName) = 0")
Or create a query from tblPositions where LastName is not null. Replace the
table names with the query name
=DCount("*","qselHasLastName")