Anda di halaman 1dari 1

A

Data
15
9
8
Formula Description (Result)
=AND(A2>A3, A2<A4) Is 15 greater than 9 and less than 8? (FALSE)
=OR(A2>A3, A2<A4) Is 15 greater than 9 or less than 8? (TRUE)
=NOT(A2+A3=24) Is 15 plus 9 not equal to 24? (FALSE)

A
Data
50
104
Formula Description (Result)
=AND(1<A2, A2<100) Because 50 is between 1 and 100 (TRUE)
=IF(AND(1<A3, A3<100), A3, Displays the second number above, if it is between 1
"The value is out of range.") and 100, otherwise displays a message (The value is
out of range.)
=IF(AND(1<A2, A2<100), A2, Displays the first number above, if it is between 1 and
"The value is out of range.") 100, otherwise displays a message (50)

--
A
Data
5.6
4
4
3
2

Anda mungkin juga menyukai