I created a form where I enter data, click a button and it fills other fields with the results of various calculations.
I have another button to add the calculated results to an existing table.
The insert statement is in this format:
insert into tablename (list of table columns) values (field1.value, field2.value...)
My question is, why does the form prompt me for the values in the fields? I thought using fieldnames.value would put the data on the table automatically.
While I was typing that last line, I found myself wondering if I need to put single quotes around each of the fieldname.value members in the values list.