A
alaxmen
I have a form that has three (3) fields on it. Two of the fields are
currently in the db and the third is new info. I am trying to compare
the fields with the table and post the third into that particular
record. I have been experimenting with my own insanity and need help.
My last try at this was to use a query behind a cmd button. The query
is stated below. Any help would be appreciated because the answer just
escapes me and I know it is in from of my eyes.
INSERT INTO [TimeSheet]![OutTime]
WHERE (((TimeSheet.UserName)=[Forms]![frmOutTimeCard]![UserName]) AND
((TimeSheet.Date)=[Forms]![frmOutTimeCard]![Date]) AND
((TimeSheet.OutTime)=[Forms]![frmOutTimeCard]![OutTime]));
It is the last field I am trying to the table based on finding the
"username and date".
currently in the db and the third is new info. I am trying to compare
the fields with the table and post the third into that particular
record. I have been experimenting with my own insanity and need help.
My last try at this was to use a query behind a cmd button. The query
is stated below. Any help would be appreciated because the answer just
escapes me and I know it is in from of my eyes.
INSERT INTO [TimeSheet]![OutTime]
WHERE (((TimeSheet.UserName)=[Forms]![frmOutTimeCard]![UserName]) AND
((TimeSheet.Date)=[Forms]![frmOutTimeCard]![Date]) AND
((TimeSheet.OutTime)=[Forms]![frmOutTimeCard]![OutTime]));
It is the last field I am trying to the table based on finding the
"username and date".