12.6.10    &&

Logical AND. Produces a 1 result if both operands are non-zero, 0 otherwise. Valid for boolean and numeric (integers or floating-point) operands only.

An example of a logical AND is:
 

if {[GETVAL %ATMHOUR]==16 && [GETVAL %ATMMINUTE]==47} then {

SETVAL TAG1=[GETVAL TAG2]

}