I have the following in the 'Visible' of a Combo Box. It doesn't seem to be working properly.
If(CategoryTypeRadioBtn2.SelectedText.Value="Purchasing Group",true && If(AddSecondaryMaterialChkBx.Value=true,true))
I have a Radio control with three choice options,
I have a checkbox (OnCheck = true, UnCheck = false, Default is 'off').
If the Radio button choice is "Purchasing Group" and the checkbox is true show the Combo Box, if not hide the Combo Box.
Will the below deliver the desired result?
If(CategoryTypeRadioBtn2.SelectedText.Value="Purchasing Group",true && If(AddSecondaryMaterialChkBx.Value=true,true))