As far as I know, a table should not have a completely blank row, since
good design principles say every record should have a primary key.
Why do you need a blank row in your table? Can you explain the purpose
of doing so?
You could always use a query that looks like the following, to insert a
blank row as long as you didn't have any required fields in the table.
Insert INTO YourTAble(someField)
Values(Null)
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================