# workflows.Progress

```go
func Progress(label string) workflows.ProgressTracker
```

Return a named progress tracker for the currently executing task.

Use named trackers when a task reports multiple progress indicators.

## Parameters

**label**

`string`

required: true

The progress indicator label.

## Returns

A progress tracker for the named progress indicator.

```go title="Go"
download := workflows.Progress("Download")
if err := download.Add(ctx, 100); err != nil {
    return err
}
```
