> ## 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/hidden",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# hidden

> Hide a measure from the workbook field browser while keeping it available for model references and derived calculations.

The field will still be referenceable in the model but hidden in the workbook UI.

## Syntax

```yaml theme={null}
<measure_name>:
  hidden: true
```

## Properties

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

  <Expandable title="measure_name properties" defaultOpen="true">
    <ParamField path="hidden" type="boolean">
      If `true`, the measure will be hidden.
    </ParamField>
  </Expandable>
</ParamField>

## Examples

```yaml theme={null}
sum_excluded_revenue:
  hidden: true
```
