Stepper in the Canvas Power App
Hi,
I have a configured a stepper in the canvas power app as mentioned below
First, I have created a UI through circle, inside circle I have set up a label to mention as 1,2,3 and 4.
To display the progress, I have placed a rectangle in between the circles.
So now on click of Next button in the bottom, must display the tick image to represent the tab movement
To achieve this, first I have set a global variable on the OnVisible property of the screen
There after having written the switch statement to increment the value of varformsteppervalue as below
Switch(
varformsteppervalue,
1, Set(varformsteppervalue, 2),
2, Set(varformsteppervalue, 3)
3, Set(varformsteppervalue, 4)
)
After that set, the below condition to display the tick image on the click of Next button.
Comments
Post a Comment