C
Chris K
I have a letter merged to a query in my database
Depending upon a date chosen by the user I would like to pass that date as
criteria to my query
I can define the whole SQL statement:
With CurrentDb.QueryDefs("StdQuery")
.SQL = "SELECT [clients].* From [clients] WHERE [start date] >
Date() AND [Letter Sent] Is Null"
End With
but is it possible just to pass the criteria part?
Depending upon a date chosen by the user I would like to pass that date as
criteria to my query
I can define the whole SQL statement:
With CurrentDb.QueryDefs("StdQuery")
.SQL = "SELECT [clients].* From [clients] WHERE [start date] >
Date() AND [Letter Sent] Is Null"
End With
but is it possible just to pass the criteria part?