<< Go back to all functions

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

  1. Using GT function:
    • Example: =GT(5, 3)
    • Result: TRUE

Use Cases and Scenarios

  1. Data Comparison: Compare sales figures between two periods.
  2. Grades Comparison: Identify students with higher scores.
  3. Budgeting: Determine if expenses exceed a certain limit.

Related Articles