A family of Microsoft relational database management systems designed for ease of use.
Sure. Add a command button to the form. You can do that from the ribbon.
Add code to the "Click Event" of this command button. Here's one possible way. There are several other ways to accomplish the task. Note that there is no error handling in this sample.
Private Sub cmdYourNewAddButton_Click()
If Not Me.NewRecord Then
Me.Recordset.AddNew
End If
End Sub