Hi All,
Can anyone help me with the brain teaser ive been struggling with
i have a table with 8 "ward" yes/no fields
I want to query for everything that is in one of the 8 (say ward1)
But records may have multiple entrys (ward 1,5,8) all ticked
When i use this formula (Frm_wards is a search form that restricts the user to select Yes or No for each ward)
i've put the formula in each 8 criteria (changing ward number of course)
I only get records that appear in ward 1 only
Ive tried this code
but i get an error
Can anyone help??
Can anyone help me with the brain teaser ive been struggling with
i have a table with 8 "ward" yes/no fields
I want to query for everything that is in one of the 8 (say ward1)
But records may have multiple entrys (ward 1,5,8) all ticked
When i use this formula (Frm_wards is a search form that restricts the user to select Yes or No for each ward)
Code:
[Forms]![Frm_Wards]![Ward1]
I only get records that appear in ward 1 only
Ive tried this code
Code:
=IIf([Forms]![Frm_Wards]![Ward1]=No,Is Not Null,[Forms]![Frm_Wards]![Ward1])
Can anyone help??