Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if(x<=y) then output is a
if(x=y) b
> c
where a,b c will be used as flag
Please try below:
If(x<=y, a, If(x=y, b, c)) or If(x<=y, 'a', If(x=y, 'b', 'c'))
Regards!
Rahul
Hello,
try this,
if(x<=y,'a',if(x=y,'b','c')) as flag
Regards,
Your condition makes no sense to me, because its not clear what happens in case of x=y.
In your example it could be either a or b.
shouldn´t it be something like this:
if(x<y,'a',if(x=y,'b',if(x>y,'c'))) as Flag
hope this helps