Inside a form I have got four datacards that are combo boxes. These combo boxes represent the names of players in a game.
I want to be able to control the visible property of these combo boxes by using a separate combo box that has the Items property of 1, 2, 3, 4. Basically choosing how many players were in the game.
So if the the user selects 4 players then 4 datacards show up. Or if the user selects 2 players then only two of the datacards show up and so on.
I have tried this type of formula but it only ever shows one combo box at a time:
If(cmBoxNoPlayers.Selected.Value = "1" || "2" || "3" || "4", true).
I will answer any questions, thanks!