Hi @Anonymous ,
As @Pstork1 said, i believe you are using combo box. I also think you control the Submit button Display mode, If the amount of selected items is large than 2, then the button is in edit mode. Otherwise, it is in Disabled mode, and show a warning in a label.
Set DisplayMode of Submit button:
If(CountRows(ComboBox1.SelectedItems)>=3,DisplayMode.Edit,Disabled)
Set Text of Label:
If(CountRows(ComboBox1.SelectedItems)<3,"Note: Please select more then 3 items!")


If the combo box is in a form, we can more easily use the errormessage label in data card to display a warning.
Modify the Text of ErrorMessage label:
If(CountRows(DataCardValue1.SelectedItems)<3,"Note: Please select more then 3 items!",Parent.Error)
Sik