Hi there
I have an app where parts are placed damaged from tools.
I have set up the lines as shown in picture.
I would like to set each item to be visible based on what number is shown in the drop down menu highlighted yellow.
the menu shows '1' only line 1 available. menu shows '3' then line 1,2 & 3 is available.
Current code:
If(DataCardValue344.Selected.Value = "1" ,true)
This works to hide line and only show it when value selected = 1
How do I make this work to show lines 1,2,3 when value selected = 3 ?
example I want something like this....
If(DataCardValue344.Selected.Value = "1" Or "2" Or "3",true)
Thanks in advance
CH