Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I don't find any difference between these two expressions, yet I want to clarify.
Expression 1: If(Match(a , 1 AND b,2) ,good,bad)
Expression 2: If(Match(a,1) AND Match(b,2),good,bad)
Anybody think the time to execute both differs if the number of nested if increases ?
Thanks
J
Exp1 has a wrong syntax but Exp2 would work if the then and else part from the if would be wrapped within single-quotes like 'good'.
- Marcus
There is no diff b/w them
Both will give same o/p and same perfomance.
-Nagarjun
Exp1 has a wrong syntax but Exp2 would work if the then and else part from the if would be wrapped within single-quotes like 'good'.
- Marcus
Yes u r ryt marcus_sommer. I did not check it properly.
-Nagarjun