Your IIF function calls are formatted incorrectly. That function has 3 parameters, not two. Where you have, for examplel
you should probably have
or possibly you should have
You made that error each time you used the IIF function.
Jim
Code:
IIf([N/I]='N','YES')
Code:
IIf([N/I]='N',[N/I],'YES')
Code:
IIf([N/I]='N','NO','YES')
Jim
Comment