NOT function
SUPPORTING APPLICATION
Excel for Microsoft 365 Excel for Microsoft 365 for Mac Excel for the web Excel 2021 Excel 2021 for Mac Excel 2019 Excel 2019 for Mac Excel 2016 Excel 2016 for Mac Excel 2013 Excel 2010 Excel 2007 Excel for Mac 2011 Excel Starter 2010.
இரண்டு மதிப்புகள் சமமாக இல்லை என்பதை உறுதிப்படுத்த விரும்பினால், தருக்க செயல்பாடுகளில் ஒன்றான NOT செயல்பாட்டைப் பயன்படுத்தவும்.
Example

Technical Details
கொடுக்கப்பட்ட மதிப்பு NOT செயல்பாட்டால் தலைகீழாக மாற்றப்படுகிறது. NOT செயல்பாடு அடிக்கடி மற்ற தருக்க சோதனை-செயல்திறன் செயல்பாடுகளை பயன்பாடு அதிகரிக்க பயன்படுத்தப்படுகிறது. IF செயல்பாடு, எடுத்துக்காட்டாக, ஒரு தருக்க தேர்வாய்வு ஐ இயக்குகிறது.
Syntax
NOT (logical)பின்வரும் பயனிலைகள் NOT செயல்பாடு தொடரியல் உடன் பயன்படுத்தப்படுகின்றன:
Logical Required – மதிப்பிடும்போது TRUE அல்லது FALSE ஆக இருக்கக்கூடிய ஒரு அளவு அல்லது வெளிப்பாடு.
Remarks
காரியத்தொடர்பு தவறானது எனில் TRUE ஐ தராது; தருக்க உண்மை என்றால் FALSE.
Examples
Here are some general examples of using NOT by itself, and in conjunction with IF, AND and OR.

Formula | Description |
---|---|
=NOT(A2>100) | A2 is NOT greater than 100 |
=IF(AND(NOT(A2>1),NOT(A2<100)),A2,”The value is out of range”) | 50 is greater than 1 (TRUE), AND 50 is less than 100 (TRUE), so NOT reverses both arguments to FALSE. AND requires both arguments to be TRUE, so it returns the result if FALSE. |
=IF(OR(NOT(A3<0),NOT(A3>50)),A3,”The value is out of range”) | 100 is not less than 0 (FALSE), and 100 is greater than 50 (TRUE), so NOT reverses the arguments to TRUE/FALSE. OR only requires one argument to be TRUE, so it returns the result if TRUE. |
Sales Commission Calculation
Here is a fairly common scenario where we need to calculate if sales people qualify for a bonus using NOT with IF and AND.