Speaking of 'code it' why not do it all in code?
Private Sub Command0_Click()
Dim strInput as string
strInput=InputBox("Whatever prompt")
'Error check input here, IsDate, IsNull, IsNumeric...
DoCmd.RunSQL "INSERT ... WHERE [x]='" & strInput & "'" , -1
End Sub
The -1 tells it to make the query a pass-through.
-Cameron Sutherland
-----Original Message-----
Can you include a prompt for a date in a pass-thru query,
and if so how do you code it? Thanks!
.