J
Joe Fallon
You can nest them inside of each other if you want.
IIf(condition, true, iif(condition, true, false))
That gets pretty confusing pretty quickly.
I would write a VBA function where you could "spell out" the requirements in
a cleaner way.
If condition then
else
If other condition then
else
end if
End if
IIf(condition, true, iif(condition, true, false))
That gets pretty confusing pretty quickly.
I would write a VBA function where you could "spell out" the requirements in
a cleaner way.
If condition then
else
If other condition then
else
end if
End if