Here is what my Access formula looks like:
iif(([One] + [Two] = [Tri Day Hrs Req'd]) and ([Total] >= [Hrs]),
"Yes","")
While it *may* not your problem, you REALLY want to avoid fields with things
like spaces, and quotes. I would not use them at all! Spaces, and funny
characters in field names is a formula for trouble. I would consider
changing that before you have too much code, reports, forms etc built.
However, the expression you would type into the text box that you place on
the screen should look like:
=iif( (([One] + [Two]) = [Tr Day Hrs Req'd]) and ([Total] >=
[Hrs]),"Yes","")
So many statements and commands use spaces and things like " or ' as
delimiters...that you don't want to use those in your field names.
Also, try building up the expression one thing at a time. For example, try:
=iif( (([One + Two]) = [Tri Day Hrs Req'd]),"Yes","")
Get the above working...and then add the extra "and". Build it up in small
bits...and get each part working.
You could also try to make the following work:
=iif( ([Total] >= [Hrs]) , "Yes","")
Get the above working....and then try expanding the expression to include
all of the above.
It is of no use to try and get one large expression working until you can
get the most simple expression working.