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

# Measure.description

<span id="atoti.Measure.description" />

> *property* Measure.description: [str](https://docs.python.org/3/library/stdtypes.html#str)

Description of the measure.

It is displayed in Atoti UI when hovering the corresponding node in the **Data model** tree to help users understand its purpose.

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> table = session.create_table(
...     "Example",
...     data_types={"Product": "String", "Price": "float"},
...     keys={"Product"},
... )
>>> cube = session.create_cube(table)
>>> m = cube.measures
```

Empty by default:

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> m["Price.SUM"].description
''
```

Changing the description:

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> m["Price.SUM"].description = "The sum of the price"
>>> m["Price.SUM"].description
'The sum of the price'
```

Blank descriptions are normalized to an empty string:

```pycon theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
>>> m["Price.SUM"].description = " "  # Blank description
>>> m["Price.SUM"].description
''
```
