Data Entry at the Top

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

To all

Normally in datasheet view a new record is added at the bottom of the table.

Is there a way to have the new record at the top of the datasheet?

Les
 
Not really.

What people occasionally do if this requirement is important is use two
datasheet views as subforms. The "top" subform will only be large enough to
display a single row, and will have its DataEntry property set to True. The
other subform will show the rest of the data, with its AllowAdditions
property set to False. Personally, I don't find it worth the effort.
 
Thanks for this Doug


Douglas J. Steele said:
Not really.

What people occasionally do if this requirement is important is use two
datasheet views as subforms. The "top" subform will only be large enough
to display a single row, and will have its DataEntry property set to True.
The other subform will show the rest of the data, with its AllowAdditions
property set to False. Personally, I don't find it worth the effort.
 
Back
Top