I have a form with a series of unbound text boxes and combo boxes that are used to set the query parameters for a report. Once the user chooses the criteria from the various boxes, the desired report opens in preview mode.
The text boxes used are for capturing beginning and end dates and use a pop-up for a calender control. In the underlying query for the report I am using the following statement in the criteria for the date field called
ToDoDate.
Between [Forms]![ToDoListDialog]![BeginningDate1] And [Forms]![ToDoListDialog]![EndingDate1].
I would like to have it so that If the user does not select a beginning and end date but chooses the other criteria criteria required that all records are shown on the report. I am not sure how this is done.
In the past I have used a statement like the following, but I can't get it to work with this date field.
Like IIf([Forms]![ToDoListDialog]![txtboxname] Is Null,"*",[Forms]![ToDoListDialog]![txtboxname] & "*")
I really could use some help. Thanks
The text boxes used are for capturing beginning and end dates and use a pop-up for a calender control. In the underlying query for the report I am using the following statement in the criteria for the date field called
ToDoDate.
Between [Forms]![ToDoListDialog]![BeginningDate1] And [Forms]![ToDoListDialog]![EndingDate1].
I would like to have it so that If the user does not select a beginning and end date but chooses the other criteria criteria required that all records are shown on the report. I am not sure how this is done.
In the past I have used a statement like the following, but I can't get it to work with this date field.
Like IIf([Forms]![ToDoListDialog]![txtboxname] Is Null,"*",[Forms]![ToDoListDialog]![txtboxname] & "*")
I really could use some help. Thanks