Skip to content

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.

PropertyTypeDescriptionExample
valueNumberCurrent progress (e.g. 0–100 or step index).50
maxNumberMaximum value (e.g. 100 for percentage or total steps).100
showLabelBooleanWhether to show a label (e.g. percentage or “Step 2 of 4”).true
labelTextCustom 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 = 4 for “Step 2 of 4”). Bind Value to a variable or formula that reflects progress. Use ProgressIndicator1.Value if 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.
// Percentage: 50%
ProgressIndicator1.Value = 50
ProgressIndicator1.Max = 100
// Steps: 2 of 4
ProgressIndicator1.Value = 2
ProgressIndicator1.Max = 4
ProgressIndicator1.Label = "Step 2 of 4"