I am just learning to build a simple access databse for an admission office that I run. I am learning access and simple vb just by doing. One snag I have run into while trying to get this thing up and running is with compound if statements (that's what I have been calling them anyway). I would like field [Math Level] to return "Standard" if field [Math Score] is between "29" and "40" and to return Honors if between "30" and "40". So, my first attempt was the following expression: IIF([Math Score] between "29" and "40", "Standard", "Honors"). This looked good until I realized that every record with a blank [Math Score] returned "Honors" as well. I guessed that I needed some sort of IsNull function within the statement, so I made a feeble attempt to add a second If statement as the otherwise command: IIF([Math Score] between "29" and "40", "Standard", IIf(IsNull[Math Score], "", "Honors")). That obviously didn't work. Go easy on me. I realize it probably looks ridiculous. Any advice is welcomed!