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.
filter multiple parameters from "one" prompt box
SELECT *
FROM tblAutomobiles
WHERE Instr("," & [Enter Colors] & ",", "," & [b][Color][/b] & ",") >0;
SELECT [i]AccountAll[/i].PHONE, Accounting.CustomerId, Accounting.Cost
FROM Accounting INNER JOIN AccountAll ON Accounting.CustomerId = AccountAll.CustomerId
WHERE ((([i][AllAccounting][/i].[CustomerId])=InStr("," & [b][CustomerId][/b] & ",","," & [b][CustomerId][/b] & ",")));
SELECT AccountAll.PHONE, Accounting.CustomerId, Accounting.Cost
FROM Accounting INNER JOIN AccountAll ON Accounting.CustomerId = AccountAll.CustomerId
WHERE ((([AllAccounting].[CustomerId])=InStr("," & [b][Enter List of CustomerIds][/b] & ",","," & [b][Enter List of CustomerId][/b] & ",")));
SELECT AccountAll.PHONE, Accounting.CustomerId, Accounting.Cost
FROM Accounting INNER JOIN AccountAll ON Accounting.CustomerId = AccountAll.CustomerId
WHERE InStr("," & [Enter Comma separated IDs] & ",","," & [Accounting.CustomerId] & ",")>0;