Good Afternoon All,
I am having a problem with my IIF Statement below:
What I want to happen is that if:
[txtStandard] is Null, then show "None"
[txtitemsperhour]>[txtstandard] then show "Exceed Expectations"
[txtitemsperhour]<[txtstandard] then show "Below Expectations"
[txtitemsperhour]=[txtstandard] Then show "Meets Expectations"
What am I doing wrong here?
With the above code, if txtstandard is blank, it shows "Exceeds expectations"
Thank you,
I am having a problem with my IIF Statement below:
Code:
=IIf(IsNull([txtStandard]),"None",IIf([txtitemsperhour]>[txtstandard],"Exceeds Expectations",IIf([txtitemsperhour]<[txtstandard],"Below Expectations",IIf([txtitemsperhour]=[txtstandard],"Meets Expectations"))))
What I want to happen is that if:
[txtStandard] is Null, then show "None"
[txtitemsperhour]>[txtstandard] then show "Exceed Expectations"
[txtitemsperhour]<[txtstandard] then show "Below Expectations"
[txtitemsperhour]=[txtstandard] Then show "Meets Expectations"
What am I doing wrong here?
With the above code, if txtstandard is blank, it shows "Exceeds expectations"
Thank you,