Clear values in a form.

  • Thread starter Thread starter Jeane
  • Start date Start date
J

Jeane

I have a form that requests 2 dates (a beginning and then
an ending). It also has another fillable text box. Then
user clicks either "Print" report of these records
or "Preview" in a print preview window these records.

I'd like the user to be able to enter new dates and get a
new range of records. However, it retains the previously
entered dates and text.

What can I do to clear the previous values?

Thanks
 
Set the value of the text boxes to Null:
Me.[StratDate] = Null
Me.[EndDate] = Null
 
Back
Top