TM317
1
Maybe I’m missing it but I don’t see an easy way to check if “this” AND “that” are true.
Example:
You need to do something if two objects exist, otherwise do something else.
as in:
if(IsValid(object1) && IsValid(object2))
{
profit++;
}
else
{
profit--;
}
TM317
2
I think I found it.
It was under math…
Correct, it is in the Boolean category of the Math section.
I will mark this as answered, however you can re-open it if you need some more info. Thanks! 
Slavq
4
Instead of searching functions on list, for example just type “and” and press enter
A lot faster.