How do i insert the current date/time into a table? I'm using:
RPT = Me.Combo87.Value
Application.CurrentDb.Execute "INSERT INTO tbl_ReportLog (DateTime, Report) VALUES ('" & Now() & "', " & RPT & ");"
The RPT bit works fine but i cannot get the other field!
RPT = Me.Combo87.Value
Application.CurrentDb.Execute "INSERT INTO tbl_ReportLog (DateTime, Report) VALUES ('" & Now() & "', " & RPT & ");"
The RPT bit works fine but i cannot get the other field!