Ok I need a little help here. I need the code to insert todays date into a specific field.
This is what I think I need but I don't know how to make it work.
This is how I wrote it.
VBA:
WO REG is the table and CLOSEDATE is the field.
This is what I think I need but I don't know how to make it work.
Code:
INSERT INTO target [(field1[, field2[, ...]])] VALUES (value1[, value2[, ...])
VBA:
Code:
INSERT INTO WO REG.CLOSEDATE VALUES (DATE());
Comment