Hi,
i have requirement of two conditions,
- -0(minus zero) to all negative decimal value which give TRUE.
- 0(zero) to all Positive decimal value which give TRUE.
i also attached the snip of that.
can you guys please help me for this one.
Hi,
i have requirement of two conditions,
i also attached the snip of that.
can you guys please help me for this one.
Hi @robert12546358 ,
Could you explain what minus zero is?
I am having a hard time understanding what you want to achieve here.
Thanks for your reply.
I want collection a wall as per unique vector value.
all above condition is my requirement.
Did you had a look here?
Yes i look at this. but my requirement is as below.
Hi @robert12546358 ,
Don’t you mean between 0 and 1 here?
If so, something like this should do the trick:
In == 0 ? "Group1" :
In == 1 ? "Group2" :
In > 0 && In < 1 ? "Group3" :
In < 0 ? "Group4" : "NA";
Thank you so much @Daan