Good Day,
I've created (thanks to Google) an sql statement to INSERT field/s values into my table and it works fine. But, how if a field or fields are empty or Null. As of this writing I'm still searching the web for answers. Any inputs are greatly appreciated.
Thank you in advance.Code:Private Sub cmdSave_Click() sql = "Insert into tblEmployee(LastName,FirstName) Values ('" & LastName & "','" & FirstName & "')" DoCmd.RunSQL (sql) myList.Requery End Sub