> ## Documentation Index
> Fetch the complete documentation index at: https://help.dingtalk.io/llms.txt
> Use this file to discover all available pages before exploring further.

# GE

> The GE function compares two values to determine whether one is greater than or equal to the other. It is supported across multiple YiDA scenarios, such as forms and workflow design. The function accepts two parameters (value1 and value2) and returns a boolean value indicating the comparison result.

The **GE** function determines whether one value is **greater than or equal to** another value.

## Supported Product Scenarios

The GE function is supported in the following YiDA scenarios.

* Form (main table field)
* Form (business association rule)
* Form (validation)
* Workflow design (validation rule)
* Workflow design (association action)
* Integration & automation
* Workflow node
* Connector

## Format

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
GE(value1,value2)
```

## Attributes

| **Attribute** | **Required** | **Description**                                 |
| ------------- | ------------ | ----------------------------------------------- |
| value1        | Yes          | The value to compare. Supports Number and Date. |
| value2        | Yes          | The value to compare. Supports Number and Date. |

## Return Value

| **Return type** | **Description**                                                                                                                                       |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| boolean         | The result of comparing the two parameters.<br />• **true**: value1 is greater than or equal to value2.<br />• **false**: value1 is less than value2. |

## Example

As shown below, use the `GE()` function to compare `Number 1` and `Number 2`. When the value of `Number 1` is greater than or equal to the value of `Number 2`, the function returns true.
