Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: Borg_species5618Hello All,
Can lava storm perform multiple nested If statements ?
Normally in other script languages we close nested If statements with 'End If' or something like it am I missing something here
At present I have to create two seperate Filter Nodes where I would like to create one, here is what I wouold like to do.
---------------------------------------------------------------------------------------
if (regexIsMatch ('Source', "KNRBILL") or regexIsMatch ('Source', "KNRCASH")) then
IsBillingActive = "Y"
if Check > 0 then
PValue = 0 - (left('YValue',Check)).double()
else
PValue = 'Value'
else
IsBillingActive = "N"
---------------------------------------------------------------------------------------
Thankyou
Frank