Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
PARAMETERS [Forms]![frmDashboard]![FromDate] DateTime, [Forms]![frmDashboard]![ToDate] DateTime, [Forms]![frmDashboard]![InvoiceDate] DateTime, [Forms]![frmDashboard]![cboBanks] Text ( 255 ), [Forms]![frmDashboard]![cboMortgageType] Text ( 255 ), [Forms]![frmDashboard]![cboCreditController] Text ( 255 );
SELECT TESTAC.AccountNumber, TESTAC.ClientName, TESTAC.ClientType, TESTAC.Address, TESTAC.AddressType, TESTAC.Area, TESTAC.Field8, TESTAC.Fee, TESTAC.VAT, TESTAC.Outlay, TESTAC.Total, TESTAC.TypeofBilling, TESTAC.Mins, TESTAC.FeeEarner, TESTAC.Field17, TESTAC.Field18, TESTAC.Field19, TESTAC.Field20, TESTAC.CreditController, "All" AS Expr1
FROM TESTAC
WHERE (((TESTAC.ClientType)=[Forms]![frmDashboard]![cboMortgageType]) AND ((TESTAC.AddressType)=[Forms]![frmDashboard]![cboBanks]) AND ((TESTAC.Field8) Between [Forms]![frmDashboard]![FromDate] And [Forms]![frmDashboard]![ToDate]) AND ((TESTAC.CreditController)=[Forms]![frmDashboard]![cboCreditController])) OR (((TESTAC.ClientType)=[Forms]![frmDashboard]![cboMortgageType]) AND ((TESTAC.AddressType)=[Forms]![frmDashboard]![cboBanks]) AND ((TESTAC.Field8) Between [Forms]![frmDashboard]![FromDate] And [Forms]![frmDashboard]![ToDate]) AND (("All")=[Forms]![frmDashboard]![cboCreditController]))
ORDER BY TESTAC.Field8;