Quick Links
Using logical operators like greater than or equal to (>=) in Excel can be very useful when you need to compare values. Let’s take a closer look at this operator to help you understand how you can utilize it in Excel.
How to Use the Greater Than or Equal to Operator in Excel Cells
At its core, greater than or equal to (>=) is one ofExcel’s logical operators. Simply, it checks whether the first value is greater than or equal to the second value, and returns the result as either TRUE or FALSE.
Using this operator on its own is as simple as typing the statement in the formula bar. For example, suppose you have a column of numbers representing sales figures, and you want to identify sales that are greater than or equal to $10,000.

You can use the greater than or equal to (>=) operator to accomplish this:
The formula compares the value in cellD2to10,000and then returns the result. You canuse Excel’s autofillto quickly populate the other cells in the column.

Since the formula uses a relative reference, it will change accordingly to compare the next value once you drag it down to the rest of the column. The result will beTRUEfor sales greater than or equal to $10,000 andFALSEotherwise.
How to Use the Greater Than or Equal To Operator in Excel Formulas
Beyond simple cell comparisons, the greater than or equal to (>=) operator is even more powerful when incorporated into Excel formulas. The most common applications are using the logical operator as a parameter forExcel’s logical functions, or any function that takes in a condition. Let’s take a look at some examples.
Using the Greater Than or Equal To Logical Operator With the IF Function
The IF function allows you to output different results based on whether a given condition is true or false.
The benefit of combining the greater or equal to (>=) operator with the IF function is that you can set custom outputs for TRUE and FALSE results. The advantages are countless in more complex scenarios.

Let’s consider a scenario where you want to categorize sales into High and Low based on whether they are greater than or equal to $10,000. Here’s how you can do that:
The formula checks whether the value in cellD2is greater than or equal to$10,000. If the condition is met, it returnsHigh; otherwise, it returnsLow. You can take your spreadsheet one step further and pair the results withExcel’s conditional formattingto color code them.

Using the Greater Than or Equal To Operator With the COUNTIFS Function
The COUNTIFS function counts cells that meet specific conditions.
With the COUNTIFS function, you can count cells that meet your greater than or equal to (>=) expressions and additional conditions as well. The result will be the count of cells that meet all the conditions specified, rather than the actual cells themselves.
Suppose that, in the same spreadsheet, you want to find all items that are in category A and also have sales greater than or equal to $5,000. Here’s how you’d do that:

In this formula, COUNTIFS looks throughC2toC9and finds the cells that equalA. Then, it looks throughD2toD9to find those that are also greater than equal to5,000. Finally, it returns the number of items that meet both conditions.
Using the Greater Than or Equal To Operator With the AND Function
The AND function takes multiple logical tests and returns TRUE if all tests are true, and returns FALSE otherwise.
You saw earlier that you may use the greater than or equal to (>=)operator on its own to check whether a single logical expression is true or false. With the AND function, you can test for multiple logical expressions in one cell.
As an example, in the same spreadsheet, suppose that products that have sold 20 or more pieces for $10,000 or more are deemed a success. you may display each product’s status using the greater than or equal to (>=) operator and the AND function together. Here’s how:
In this formula, the AND function checks whether the value inB2is greater than or equal to20, and whether the value inD2is greater than or equal to10,000. It then returns TRUE if both conditions are true, and false otherwise.
The greater than or equal to (>=) operator can prove useful in many Excel scenarios. Combining this operator with other functions opens even more solutions for your spreadsheet problems. You just have to remember to use it.