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

# workflows.Progress

```go theme={"system"}
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

<ParamField path="label" type="string" required>
  The progress indicator label.
</ParamField>

## Returns

A progress tracker for the named progress indicator.

<RequestExample>
  ```go Go theme={"system"}
  download := workflows.Progress("Download")
  if err := download.Add(ctx, 100); err != nil {
      return err
  }
  ```
</RequestExample>
