Hello @Pasta_K
Create 3 variable that can store numbers. let's name it varStage1, varStage2, VarStage3
On App Start:
Set(varStage1,0);
Set(varStage2,0);
Set(varStage3,0);
Then if on DataCard1, he changes the value, on that control's OnChange or OnSelect property, you can do is
Set(varStage1,1)
Then if on DataCard2, he changes the value, on that control's OnChange code to:
Set(varStage2,1)
Then if on DataCard3, he changes the value, on that control's OnChange code to:
Set(varStage3,1)
Then on your progress bar just make the width like this, and color it green.
IfError(Parent.Width/(varStage1+varStage2+varStage3)*100,0)
✔️ | Just in case my response helped you solve your problem, please mark/accept this as a SOLUTION. This helps community members if they experience a similar issue in the future. |