Hi guys im using the following code to check the database and add the date to a listview
Set rs = db.OpenRecordset("SELECT * FROM `Leads` WHERE `Agent` = " & "'" & Form1.Text1.Text & "' AND `Calling From` = " & "'" & Form4.Combo1.Text & "' AND `Date` = '' ")
I am wondering how can i make it only display the records that have a blank Date field?
At the moment it dont show any date that has a blank date field. How can i make it display them only?
thanks
Set rs = db.OpenRecordset("SELECT * FROM `Leads` WHERE `Agent` = " & "'" & Form1.Text1.Text & "' AND `Calling From` = " & "'" & Form4.Combo1.Text & "' AND `Date` = '' ")
I am wondering how can i make it only display the records that have a blank Date field?
At the moment it dont show any date that has a blank date field. How can i make it display them only?
thanks