GT (>)
Basic Overview
| 
                             Description  | 
                             If the matching row on the first input is greater than the matching row in the second input, true (1) is returned, false (0) otherwise. Undefined values are treated as false (0).  | 
| 
                             Syntax  | 
                            
  | 
| 
                             Parameter  | 
                            
  | 
Example
Input A =
| 
                             Year  | 
                             Value  | 
|---|---|
| 
                             2019  | 
                             400  | 
| 
                             2020  | 
                             700  | 
| 
                             2021  | 
                             850  | 
| 
                             2022  | 
                             500  | 
Input B =
| 
                             Year  | 
                             Value  | 
|---|---|
| 
                             2019  | 
                             350  | 
| 
                             2020  | 
                             400  | 
| 
                             2021  | 
                             850  | 
| 
                             2022  | 
                             600  | 
Output GT('A','B') =
| 
                             Year  | 
                             Value  | 
|---|---|
| 
                             2019  | 
                             1  | 
| 
                             2020  | 
                             1  | 
| 
                             2021  | 
                             0  | 
| 
                             2022  | 
                             0  |