Good afternoon folks, I'm a total novice at this game.
I'm a student at an University in DC and is taking a basic course in Access and database. I need some help writing a nesting expression using Isnull and iff functions.
I have a field titled "Revision_b ox" that would display either 0,1,2, or 3 depending if certain fields are empty or has been inputted in.
So,
If Round 1 field is empty then Rev box would be "0" but if inputted then 1.
If Round 2 field is inputted then Rev box would be "2".
If Round 3 field is inputted then Rev box would be "3".
Does that make sense? I wrote a code for it but it doenst work...
I'm a student at an University in DC and is taking a basic course in Access and database. I need some help writing a nesting expression using Isnull and iff functions.
I have a field titled "Revision_b ox" that would display either 0,1,2, or 3 depending if certain fields are empty or has been inputted in.
So,
If Round 1 field is empty then Rev box would be "0" but if inputted then 1.
If Round 2 field is inputted then Rev box would be "2".
If Round 3 field is inputted then Rev box would be "3".
Does that make sense? I wrote a code for it but it doenst work...
Code:
Revision_box: IIF(IsNull([Round_1]), "0", IsNull([Round_2]), "0", "2", IsNull([Round_3]), "0", "3")
Comment