Dear all,
I have a form with a subform that is linked to a query. the current record Source is as follows:
SELECT tbl_Orders.OrderID, tbl_Orders.PurchaseNo, tbl_Orders.CustomerID, tbl_Orders.StartDate, tbl_Orders.DueDate, tbl_Orders.EndDate, tbl_Orders.InovoiceNr, tbl_Orders.Notes, tbl_Orders.StartDate, tbl_Orders.StartDate, tble_Customers.CompanyName, tbl_Orders.TaxFromOrigin
FROM tble_Customers INNER JOIN tbl_Orders ON tble_Customers.CustomerID = tbl_Orders.CustomerID;
I want to add a button that upon click will filter the recrds in same form to show all records where tbl_Orders.EndDate = Null
How can do that
I have a form with a subform that is linked to a query. the current record Source is as follows:
SELECT tbl_Orders.OrderID, tbl_Orders.PurchaseNo, tbl_Orders.CustomerID, tbl_Orders.StartDate, tbl_Orders.DueDate, tbl_Orders.EndDate, tbl_Orders.InovoiceNr, tbl_Orders.Notes, tbl_Orders.StartDate, tbl_Orders.StartDate, tble_Customers.CompanyName, tbl_Orders.TaxFromOrigin
FROM tble_Customers INNER JOIN tbl_Orders ON tble_Customers.CustomerID = tbl_Orders.CustomerID;
I want to add a button that upon click will filter the recrds in same form to show all records where tbl_Orders.EndDate = Null
How can do that