Please help how to resolved this issue
I made Command button to clear the value on search by date and showing all data again
I get an error 2580
I use below VBA
	
	
	
		
 I made Command button to clear the value on search by date and showing all data again
I get an error 2580
I use below VBA
		Code:
	
	
	Private Sub CDMClear_Click()
Dim task As String
Me.DateFrom = Null
Me.DateTo = ""
task = "select * from qrySearch order by [ProdDate]"
Me.RecordSource = task
End Sub