# gt operator

The gt operator is a *greater than* relational operator.

**Synonyms:** after, >

## Syntax

```
with attr.name gt "valuestring"
```

## Example(s)

```
list invoices with amount gt "500"
```

```
list invoices with amount > "500"
```

## See also

- [> relational operator](https://d3codex.com/pickbasic-flashbasic/greater-than-relational-operator/)
- [after operator](https://d3codex.com/access/after-operator/)

---
Source: https://d3codex.com/access/gt-operator/ - part of the D3Codex reference.
