0% found this document useful (0 votes)
7 views

logicalOPNotes

The document outlines four logical functions in Microsoft Excel: AND, OR, XOR, and NOT, along with their formula examples. It also explains the IF function, which tests a condition and returns different results based on whether the condition is TRUE or FALSE. Additionally, it describes the arguments for logical functions, which can include references, numbers, text, and other Excel functions.

Uploaded by

mstanishasingh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

logicalOPNotes

The document outlines four logical functions in Microsoft Excel: AND, OR, XOR, and NOT, along with their formula examples. It also explains the IF function, which tests a condition and returns different results based on whether the condition is TRUE or FALSE. Additionally, it describes the arguments for logical functions, which can include references, numbers, text, and other Excel functions.

Uploaded by

mstanishasingh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Microsoft Excel has 4 logical functions to work with.

Function Formula Example


AND =AND(A2>=10, B2<5)
OR =OR(A2>=10, B2<5)
XOR =XOR(A2>=10, B2<5)
NOT =NOT(A2>=10)

IF function
Tests a supplied condition. Return one result, if condition evaluates TRUE and

sysntax:- if(logical condition,value_if_true,value_if_false).

Example : - 4 Greater than zero


-9 Number is less than zero
Formula Arguments of Logical functions - References,Numbers,Text,
Description
The formula returns TRUE if a value in cell A2 is greater than or equal to 10, and a va
The formula returns TRUE if A2 is greater than or equal to 10 or B2 is less than 5, or
The formula returns TRUE if either A2 is greater than or equal to 10 or B2 is less than
The formula returns FALSE if a value in cell A2 is greater than or equal to 10; TRUE o

condition evaluates TRUE and another result if condition evaluates to FALSE.

_if_false).

Yes
han zero
erences,Numbers,Text,Formulas and other Excel functions. All should evaluvate to TRUE OR F
or equal to 10, and a value in B2 is less than 5, FALSE otherwise.
or B2 is less than 5, or both conditions are met. If neither of the conditions it met, the formula
to 10 or B2 is less than 5. If neither of the conditions is met or both conditions are met, the fo
or equal to 10; TRUE otherwise.
luvate to TRUE OR FALSE

ns it met, the formula returns FALSE.


itions are met, the formula returns FALSE

You might also like