ChrisHaynes
Technical User
Hi everyone. I am trying to create a search tool on my main form. I have a combo box (test) listing all the fields to search by. These fields are all tick boxes on the main table (yes/no as the data type)
I am trying to create a command button that will open the form containg all the records (frm_softwaredata) and only show the records with 'yes' (or 1) in the chosen field.
I have tried using the code below to do this:
DoCmd.OpenForm "frm_softwaredata", , , "[" & Me![test] & "]" & "= '" & 1 & "'"
However this code brings up an error?
Any ideas what is wrong with code?
Thanks everyone, sorry if this is an obvious solution, I'm still learning!
Chris
I am trying to create a command button that will open the form containg all the records (frm_softwaredata) and only show the records with 'yes' (or 1) in the chosen field.
I have tried using the code below to do this:
DoCmd.OpenForm "frm_softwaredata", , , "[" & Me![test] & "]" & "= '" & 1 & "'"
However this code brings up an error?
Any ideas what is wrong with code?
Thanks everyone, sorry if this is an obvious solution, I'm still learning!
Chris