answersLogoWhite

0


Best Answer

You can use the Not function or the <> operator, which is the < and the > beside each other. To see if the values in A1 and A2 are not equal to each other, you can type:

=A1<>A2

or

=Not(A1=A2)

In each case they will either give you TRUE if they are not equal or FALSE if they are equal, in the cell that you enter the formula into.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

You can use the equal sign, the greater than sign and the less than sign. Typically they would be used in an IF function, like this:

=IF(A2>B2, "A2 is greater than B2", "A2 is less than or equal to B2")

They can also be used in other logical functions like AND, OR and NOT, and even on their own.

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

There are three main operators:

The equal to. =
The greater than. >
The less than. <

They can be combined to do things like less than or equal to, greater than or equal to and not equal to, which is done by using <> together.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

Comparison operators allow you to compare things. They are for checking if things are equal to or not equal to or greater than or less than. You would use them in logical situations, like checking if a score in an exam was high enough to be a pass. The standard operartors are:

= Equal to

<> Not equal to

< Less than

> Greater than

<= Less than or equal to

>= Greater than or equal to

The result of a comparison is always either TRUE or FALSE.

=10=10 will result in TRUE.

=5>=6 will result in FALSE

See the related question below.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

It is any of the operators used to compare things to see if they are equal or greater than to less than etc. So ones like > < = are all comparison operators.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Equal to ( = )

Less than ( < )

Less than or equal to ( <= )

Greater than ( > )

Greater than or equal to ( >= )

Not equal to ( <> )

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
4y ago

Fart face

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the comparison operator used for not equal to in Excel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which comparison operator means not equal to?

"&ne;" is used in mathematics, though because of the limitations of the Ascii character set then != is often used in programming. In Microsoft Excel, the comparison operator that means "not equal to" is either NOT, or &lt;&gt;.


Is percent a valid Excel arithmetic operator?

No. Percent is not an operator, it is a symbol or cell format style.


What is concatenating operator on Microsoft Excel?

The &amp; is the concatenation operator. It could be used like this: =A1 &amp; A2


A symbol in Excel used to compare values is called?

comparison operators


In Excel what is the operator used for multiplication called?

In Excel, you use the asterisk, "*". As to the name, I would just call it the "multiplication sign".


What is a operator in access?

It is any of the operators used to compare things to see if they are equal or greater than to less than etc. So ones like &gt; &lt; = are all comparison operators.


What is a comparison of two numbers or expressions using symbols?

Depending on the comparison operator used, that's either an equation, or an inequality.


When more than one arithmetic operator is involved in a formula excel changes the year to?

Excel does not change the year if the arithmetic operators have been used with the correct syntax.


What pair of brackets can be used to override the precedence of the operators in Excel?

Parentheses or round brackets ( and ) override operator precedence.


What is the symbol that tells excel that you are about to begin a formula?

the asterisk is used for what function when building a formula in excel


When more than one operator is involved in a formula Excel follows a different basic order of operations from that used in algebra.true or false?

False. Excel follows the rules of mathematics in doing calculations, as algebra also does.


What type of operator is used to compare two values?

Conditional operators are used to compare two values. The result of a comparison is either true or false. Boolean data types can hold the values true or false. Here's a list of operators. = Equal to &gt; Greater than &lt; Less than &gt;= Grater than or equal to &lt;= Less than or equal to &lt;&gt; Not equal to