Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have created multiple variables in my expression all without equals sign. When I use the variable individually they are generating fine. But when I use it in a if condition I get this error. THe condition is like
if(Cond1 = True OR Cond2 = True, $(vVar1), if(Cond3 = False, $(vVar2),0))
something like this. How do I tackle this error, not able to find anything related to this.
Kindly help, its a little urgent.
Thanks
Try
if(Cond1 = True OR Cond2 = True, $(=vVar1), if(Cond3 = False, $(=vVar2),0))
It would be more helpful if you post the actual expression, because this dummy expression doesn't seem to have any issue. May be we can find the issue in the original expression.
Best,
Sunny
Try
if(Cond1 = True OR Cond2 = True, $(=vVar1), if(Cond3 = False, $(=vVar2),0))
Worked perfectly thanks.