Progress Indicator
Progress Indicator
Section titled “Progress Indicator”The Progress Indicator component shows progress as a bar or similar visual (e.g. task completion, steps, or a percentage). Use it in wizards, forms, or dashboards.
Key properties
Section titled “Key properties”| Property | Type | Description | Example |
|---|---|---|---|
value | Number | Current progress (e.g. 0–100 or step index). | 50 |
max | Number | Maximum value (e.g. 100 for percentage or total steps). | 100 |
showLabel | Boolean | Whether to show a label (e.g. percentage or “Step 2 of 4”). | true |
label | Text | Custom label text (optional). | "Step 2 of 4" |
(Additional properties may be available in the manifest; check the Properties pane in Power Apps Studio.)
- Canvas: Set Value and Max (e.g.
Value = 2,Max = 4for “Step 2 of 4”). Bind Value to a variable or formula that reflects progress. UseProgressIndicator1.Valueif you need the current value in formulas. - Model-Driven: Add the control to a Whole number or Decimal column that holds the progress value; set Max as needed.
Example (Canvas)
Section titled “Example (Canvas)”// Percentage: 50%ProgressIndicator1.Value = 50ProgressIndicator1.Max = 100
// Steps: 2 of 4ProgressIndicator1.Value = 2ProgressIndicator1.Max = 4ProgressIndicator1.Label = "Step 2 of 4"