I was testing a button in a form with an OnClick event. I wanted to see if I could use a form to insert a new record into a table, I tried the following but got a Syntax Error:
INSERT INTO Table1 (Org, Date, Name)
VALUE ('#Me.Org#', #Me.Date#, '#Me.Name#')
Org and Name fields are text fields...