I have a dropdown menu with 10 options. I need the user to only be able to select three of them. I would like to disable the ability to pick additional options, and not clear the selections they have already made if they try. My combobox control is called "cmbJESeason" and I feel like the formula belwo should be close, but it's apparently not close enough. Any suggestions? Thanks in advance!!
If( CountRows(cmbJESeason.SelectedItems) > 3, Set(cmbJESeason.DisplayMode, DisplayMode.Disabled), Set(cmbJESeason.DisplayMode, DisplayMode.Edit) )