The syntax for insert statement is:
INSERT INTO target [(field1[, field2[, ...]])]
VALUES (value1[, value2[, ...])
with target being the destination table.
Example:
Docmd.RunSql "INSERT INTO tblInvoices ([CustID]) VALUES (forms!FormName!textboxname) ... where the value is coming from a form...