S
SigiS
Can some tell me what is the structure of a multiple IIf statement?
John Spencer said:One structure would be:
IIF(Test,TruePart,IIF(AnotherTest,TruePart,IIF(AnotherTest,TruePart,FalsePart)))
A variation on that:
IIF(Test,IIF(AnotherTest,TruePart,IIF(AnotherTest,TruePart,FalsePart)),FalsePart)
Other variations are possible:
IIF(Test,IIF(Test,TruePart,FalsePart),IIF(Test,TruePart,FalsePart))
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
Can some tell me what is the structure of a multiple IIf statement?