Logical AND
|
Signature |
|---|
|
Logic_And(condition1, condition2) |
|
Description |
|---|
|
Does a logical AND comparison. The result is only true, if all inputs are true, otherwise it is false. |
|
Result |
|---|
|
True if both condition1 and condition2 are true, otherwise false. |
|
Arguments |
|
|---|---|
|
condition1 |
An expression which is treated as a boolean. |
|
condition2 |
An expression which is treated as a boolean. |