I have the below code on the items value of a combo box that will check how many desks are free for suite 2.01 (possible 24 desks free) & 2.01b (possible 6 desks free) and then allow the user to select how many desks they want to book based on how many are available. I then want the value selected in the sequence combo box to be displayed in the "No. of Desks" label in the summary section, but i cant figure it out. I've tried "DataCardValue19_3.selected", "selecteditems" and the selected value wont display in the label. How can I get the selected sequence value select in DataCardValue19_3 to display in a label?
Thanks in advance.
DataCardValue19_3 Items Code
If(
DataCardValue19_2.Selected.Value = "2.01",
Sequence(VarSuite201FreeDesks),
If(
DataCardValue19_2.Selected.Value = "2.01b",
Sequence(VarSuite201bFreeDesks),
[]
)
)