IIF & ISNOTNULL Problem

aingram

Registered User.
Local time
Today, 19:43
Joined
Jun 20, 2005
Messages
29
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)
Code:
[Forms]![Frm_Wards]![Ward1]
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
Code:
=IIf([Forms]![Frm_Wards]![Ward1]=No,Is Not Null,[Forms]![Frm_Wards]![Ward1])
but i get an error

Can anyone help??
 
Im sorry im new to the access game.

In what way do u mean normalize?
 
You've built a flat file/spreadsheet style db, that may be ok for something like a single user diary but not for this type of db.
Search here for normalis(z)ation, there are many articles on the subject:)
 
I will have a read, Thanks

In the mean time is there a way of making this bad job, good. as this is a historic database i have inherited rather than a new database im building from scratch
 
Well, see if this helps you. As has been mentioned, you need to normalize your database to avoid messy solutions like the one I've provided.

And again for emphasis...Normalize or suffer endlessly. A lesser-known fact is that the Greek god Prometheus was actually chained to the rock (with the vulture pecking out his liver for eternity) NOT for giving humanity fire, but instead for failing to normalize the database of pyrhic recipients. ;)
 

Attachments

Thanks For the DB

i have found that using
Code:
Like IIf([Forms]![Frm_Wards]![Ward1]=0,"*",-1)
seems to work
 
On a Form Select the Ward

On a button

Function WhatsintheWardCriteria() as String

With CodeContextObject

If .[Ward]=1 then
WhatsintheWardCriteria = "[Ward1] = -1"
elseif .[Ward]=2
WhatsintheWardCriteria = "[Ward2] = -1"
etc ...
End With
End Function

Function WhatontheWardReport()

DoCmd.OpenReport "WhatsontheWardReport", acViewPreview, , WhatsontheWardCriteria

End Function

Alternatively, you can use the Case Statement.

Basically the Criteria predetermines what you are looking for and Filter does the rest.

I hope this helps.

Simon
 
a couple of unusual things you might do with yes/no fields

1. add the trues!

access actually stores trues as -1 and falses as 0

therefore if you add your true/falses (sounds strange), then if you end up with -4, then 4 of the fields were checked, but you dont know which. if you get -1 then you know something was true!


2. use bit-wise operations

an alternative is to use bitwise operations to test for certain conditions

assign your flags binary values

flag1 = value 1
flag2 = value 2
flag3 = value 4
flag4 = value 8

etc, and add the values for the trues

then a value of 23, say indicates that flags 1,2,3 and 5 were set

now you can use bitwise comparisons AND XOR OR etc to test flag settings, but it depends whether you're comfortable with this technique.

once you understand it its far easier (and must be much quicler) than loads of nested ifs.
 

Users who are viewing this thread

Back
Top Bottom