GTE
The GTE
function in Google Sheets is used to determine if the first argument is greater than or equal to the second argument. It returns TRUE
if the first argument is greater than or equal to the second, and FALSE
otherwise. This function is equivalent to the >=
operator.
Function Syntax and Parameters
Syntax: GTE(value1, value2)
Parameters:
value1
: The first value to compare.value2
: The second value to compare.
Step-by-Step Tutorial
-
Using
GTE
with numbers:- Example:
=GTE(5, 3)
- Result:
TRUE
- Example:
-
Using
GTE
with cell references:- Example: If
A1
has the value10
andB1
has the value5
, then=GTE(A1, B1)
will returnTRUE
.
- Example: If
Use Cases and Scenarios
- Data Comparison: Check if a value is greater than or equal to a specific threshold.
- Data Validation: Validate if a value meets a required condition.
- Conditional Formatting: Use
GTE
in conditional formatting rules to highlight cells based on certain criteria.
Related Functions
There are no directly related functions for the GTE
operator.