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.
[blue] SELECT *
FROM [purple][b][i]TableName[/i][/b][/purple]
WHERE ([[purple][b][i]CheckboxName[/i][/b][/purple]] = True);[/blue]
Dim strSQL as String
strSQL = "SELECT * FROM tblData WHERE "
If [chkOne] Then
strSQL = strSQL & "[Field1] = '" & txtOne & "' AND "
End If
// additional conditions as desired for any
// number of checkbox / text field pairs
// strip trailing " AND "
strSQL = left(strSQL, Len(strSQL - 5))
// do something with your query (like DoCmd.OpenForm)