The GTE function in Google Sheets is a logical function that evaluates whether one value is greater than or equal to another. It outputs a boolean result—either TRUE or FALSE—making it useful for comparisons in spreadsheets and decision-making processes.
Syntax
GTE(value1, value2)
- value1: The first value or expression to compare.
- value2: The second value or expression to compare.
Example #1
GTE(100, 50)
The function checks if 100 is greater than or equal to 50. The result is TRUE.
Example #2
GTE(25, 25)
This checks if 25 is greater than or equal to 25. The outcome is TRUE since they are equal.
Example #3
GTE(10, 20)
This evaluates if 10 is greater than or equal to 20. The result is FALSE since 10 is less than 20.
Error handling
- VALUE!: Indicates that one of the arguments is not a valid number or expression. Ensure both arguments are numeric.
- N/A: This error occurs if the function is unable to evaluate the parameters. Make sure neither value is missing or invalid.