I have a Label with the number 7 (for example). I want a Drop Down list to have choices 0-7 based on that Label. If the Label were to be 12, then I'd want the Drop Down list to have choices 0-12. Is there a way I can essentially create a counting loop of values for a Drop Down list based on a Label's value?
Solved! Go to Solution.
Sure...change to:
Sequence(Value(yourLabel.Text) + 1, 0)
Set your Items property of the Dropdown to:
Sequence(Value(yourLabel.Text))
This will provide what you are looking for.
I hope this is helpful for you.
Wow, this works almost perfect. Is there a way I can include 0? Right now, if the "yourLabel1.Text" is 0, it makes it blank.
Sure...change to:
Sequence(Value(yourLabel.Text) + 1, 0)
User | Count |
---|---|
258 | |
111 | |
95 | |
48 | |
41 |