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

# default_drill_fields

> Sets the default drill set for all measures in a view.

This will be overridden by a given field's [`drill_fields`](/modeling/measures/parameters/drill-fields) parameter.

## Syntax

```yaml theme={null}
default_drill_fields: [ field1, field2, ... ]
```

## Properties

<ParamField path="default_drill_fields" type="array">
  An array of field names to include in the default drill set. Can be an empty array to remove drill.

  To remove drilling, add this parameter to the view but leave the value empty: `[]`
</ParamField>

## Examples

```yaml title="Default drill fields for order_items" theme={null}
default_drill_fields:
  [
    id,
    user_id,
    users.full_name,
    inventory_items.product_name,
    sale_price,
    margin,
    "order_items.created_at[date]",
    status
  ]
```

```yaml title="Remove drilling" theme={null}
default_drill_fields: []
```
