How can you check if a form is in append mode (ie new record)
Code:
If MyForm = ' Append Mode ? Then
' my code
End If
If Me.NewRecord Then 'Place your code here End If
Comment