hockey8837
Registered User.
- Local time
- Today, 18:13
- Joined
- Sep 16, 2009
- Messages
- 106
Hi,
I have DB based on flower information; i.e. flower name, growth patterns and needs, bloom time, and bloom color.
On my Flower Details form, I have a subform featuring bloom colors in check boxes. Since a flower can have multiple bloom colors, I decided to use check boxes rather than have some kind of combo box to select only one bloom color.
Now, I'm trying to create a query that will combine all of the 'true' check boxes for a flower into one box. I was thinking of using some kind of IIf(Null) statement, like I did with flower name:
thanks!
I have DB based on flower information; i.e. flower name, growth patterns and needs, bloom time, and bloom color.
On my Flower Details form, I have a subform featuring bloom colors in check boxes. Since a flower can have multiple bloom colors, I decided to use check boxes rather than have some kind of combo box to select only one bloom color.
Now, I'm trying to create a query that will combine all of the 'true' check boxes for a flower into one box. I was thinking of using some kind of IIf(Null) statement, like I did with flower name:
Flower Name: IIf(IsNull([Latin Name]),[Common Name],[Latin Name] & ", " & [Common Name])
Is this the right track for true/false boxes? What type of statement do I write in the query if I want a box that will list only the true colors for that flower, like "blue, purple, pink," (etc.), of all my possible 11 color check boxes.
thanks!