GT
The GT
function in Google Sheets is an operator that returns TRUE
if the first argument is strictly greater than the second, and FALSE
otherwise. It is equivalent to the >
operator.
Function Syntax and Parameters
Syntax: GT(value1, value2)
Parameters:
value1
: The first value to compare.value2
: The second value to compare.
Step-by-Step Tutorial
- Using
GT
function:- Example:
=GT(5, 3)
- Result:
TRUE
- Example:
Use Cases and Scenarios
- Data Comparison: Compare sales figures between two periods.
- Grades Comparison: Identify students with higher scores.
- Budgeting: Determine if expenses exceed a certain limit.