Hi All, I'm trying to hide DropDown3 based on two variables. If Dropdown1 value is "Screw" and if Dropdown 2 value startswith "M".
Thanks in Advance
Solved! Go to Solution.
For what your descriptions shows, you should be simply basing this off of Dropdown1 and Dropdown2. There is no need for any variables.
Ex. This formula on the Visible property of Dropdown3 will hide it if the conditions are met:
!(Dropdown1.Selected.Value = "Screw" && StartsWith(Dropdown2.Selected.Value, "M"))
I hope this is helpful for you.
For what your descriptions shows, you should be simply basing this off of Dropdown1 and Dropdown2. There is no need for any variables.
Ex. This formula on the Visible property of Dropdown3 will hide it if the conditions are met:
!(Dropdown1.Selected.Value = "Screw" && StartsWith(Dropdown2.Selected.Value, "M"))
I hope this is helpful for you.
User | Count |
---|---|
261 | |
110 | |
97 | |
53 | |
39 |