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

# display_order

> Overrides the sort order for the field picker within the field's grouping.

By default, measures are sorted alphabetically. Defining a `display_order` will override this default.

For fields inside groups using [`group_label`](/modeling/measures/parameters/group-label), the group will be ranked with the `min` of all the fields in the group. For example, if there are 3 fields with `display_order` of `4`, `5` and `{empty}`, the group will have a `display_order` of 4).

This parameter does not move measures above dimensions in the field picker.

## Syntax

```yaml theme={null}
<measure_name>:
  display_order: <number>
```

## Properties

<ParamField path="measure_name" type="object[]">
  The name of the measure.

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="display_order" type="number">
      A whole number that determines the measure's position in the field picker within its view.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml theme={null}
count:
  aggregate_type: count
  display_order: 1
```
