G
Guest
Hi. How can i limite datasheet view to insert only 2 records. I want to
insert only two records in one datasheet.
Regards,
Marco.
insert only two records in one datasheet.
Regards,
Marco.
Ofer Cohen said:On the On Current Event of the form write the code
If Me.RecordsetClone.RecordCount >= 2 Then
Me.AllowAdditions = False
Else
Me.AllowAdditions = True
End If