No, this bug exists and it was reported before. It happens when you use $null and $iif as $+() parameters. Putting a null parameter before an $iif() one bugs it.

$+($null,$iif(1,1)) = $null1
$+($null,blah,$iif(1,1)) = $nullblah1
$+($null,$iif(1,$null),blah) = $nullblah
$+(,$iif(1,1)) = $null1
$+(,blah,$iif(1,1)) = $nullblah1
$+(,$iif(1,),blah) = $nullblah

These work:
$+($null $iif(1,1),blah) = 1blah
$+($iif(1,1),$null) = 1

Last edited by cold; 27/10/03 02:48 PM.

* cold edits his posts 24/7