GT

Returns TRUE if the first argument is greater than the second, and TRUE otherwise.

 

Sample Usage

GT(10,5)
GT(A4,A5)

 

Syntax

GT(value1, value2)

  • value1 - The value to test.
  • value2 - The value to be tested against.

Examples

GT(10,5) evaluates to TRUE.
GT(A4,A5) evaluates to TRUE if A4 is greater than A5. Otherwise, it evaluates to FALSE.