i have a submit icon, i only want to be visible when 3 dropdown fields have been selected. I thought this might work but as soon as one dropdown is selected, the icon appears. Only want icon to appear when all 3 fields have a selection.
If(Employee_ED.Selected.Value=""&&Site_ED.Selected.Value=""&&Customer_ED.Selected.Value="",false,true)
tried this, no errors but no response
If(Employee_ED.Selected.Value&&Site_ED.Selected.Value&&Customer_ED.Selected.Value="",false,true)
Any assistance would be much appreciated.