I have the below, and its not working as expected,
If Datacardvalue73.Text = Leaver then i need all the below fields to not be blank
if it is Monthly then i only need two of the fields to not be blank.
If(
(DataCardValue73.Text = "Leaver" &&
CB_Safety_No.Value = false && CB_Safety_Yes.Value = false Or
CB_Test_No.Value = false && CB_Test_Yes.Value = false Or
CB_Volt_No.Value = false && CB_Volt_Yes.Value = false Or
CB_Sniff_No.Value = false && CB_Sniff_Yes.Value = false
)
||
(DataCardValue73.Text = "Monthly" &&
CB_Safety_No.Value = false && CB_Safety_Yes.Value = false Or
CB_Test_No.Value = false && CB_Test_Yes.Value = false )
, DisplayMode.Disabled, DisplayMode.Edit)