Jan 24, 2012 #1 coopermarsh MIS Joined Nov 24, 2004 Messages 159 Location GB hi How do you update a field with todays date when another field has been set to true in ms access 2010?
hi How do you update a field with todays date when another field has been set to true in ms access 2010?
Jan 24, 2012 #2 Andrzejek Programmer Joined Jan 10, 2006 Messages 8,579 Location US [tt]strSQL = "Update tblMyTable Set DateField = #" & Date & "# Where AnotherField = -1"[/tt] Have fun. ---- Andy Upvote 0 Downvote
[tt]strSQL = "Update tblMyTable Set DateField = #" & Date & "# Where AnotherField = -1"[/tt] Have fun. ---- Andy
Jan 24, 2012 Thread starter #3 coopermarsh MIS Joined Nov 24, 2004 Messages 159 Location GB Thanks wil give it a try Upvote 0 Downvote