> ## 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.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/measures/parameters/view-label",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# view_label

> Move a measure under a different view in the field browser for better organization, such as grouping aggregates with their source.

For example, grouping `user_facts` fields under the `users` view for better organization and discovery.

## Syntax

```yaml theme={null}
<measure_name>:
  view_label: <view_name>
```

## Properties

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

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="view_label" type="string">
      The name of the view to nest the field under.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml theme={null}
sum_lifetime_orders:
  aggregate: sum
  sql: ${user_facts.lifetime_orders}
  view_label: users
```
