
Announcements
Hello,
I am attempting to create an app where the user selects a number from my combo box (A number 1 through 6) and depending on that number, that many data cards will become visible/display (My data cards are from my sharepoint form).
So if I select 2, two of my data cards will become visible and the user can enter the data that they need to within those cards.
First time creating an app, so would love some simplistic advice! Thank you!
Hi @jaiho ,
In the Visible property DataCards (not the DataCard value), enter:
DataCard 1:
Value(ComboBox1.Selected.Value)>=1
DataCard 2:
Value(ComboBox1.Selected.Value)>=2
DataCard 3:
Value(ComboBox1.Selected.Value)>=3
DataCard 4:
Value(ComboBox1.Selected.Value)>=4
DataCard 5:
Value(ComboBox1.Selected.Value)>=5
DataCard 6:
Value(ComboBox1.Selected.Value)>=6
Related solution I posted earlier this week:
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.