So, basicallycode:
$a=10
if $a<10
$b='a is smaller than 10'
else
$b='a is not smaller than 10'
endif
could be a candidate for the IIF as in code:
$a=10
$b=iif($a<10,'a is smaller than 10','a is not smaller than 10')
but anything involving more complicated things like function evaluations would be off-limits.
You might need to update the Manual to make this clear.
[ 09. January 2003, 18:14: Message edited by: sealeopard ]
_________________________
There are two types of vessels, submarines and targets.