Hello,
I am attempting to set the visible property for a field to false, but I am having a problem.
The conditions are confusing to me because there are four conditions all using the drpNewOrRenewal dropdown where "New Money and Renewal" is selected.
The first condition is as follows:
If(drpNewOrRenewal.Selected.Value = "New Money and Renewal" && drpExistingCust.Selected.Value = "Yes" && IsEmpty(colTypesOfNewMoneyReq) && "Administrative Extension (90-day Extension)" in colTypesOfRenewalReq.Value,false) && varTabSelected = 6 ||
If(drpNewOrRenewal.Selected.Value = "New Money and Renewal" && drpExistingCust.Selected.Value = "Yes" && "Administrative Extension (90-day Extension)" in colTypesOfRenewalReq.Value,true) &&
If(drpNewOrRenewal.Selected.Value = "New Money and Renewal" && drpExistingCust.Selected.Value = "Yes" && "ACH Only" in colTypesOfRenewalReq.Value,true) &&
If(drpNewOrRenewal.Selected.Value = "New Money and Renewal" && drpExistingCust.Selected.Value = "Yes" && "FRG migration in colTypesOfRenewalReq.Value,false) && varTabSelected = 6
The Multi-Select check box has three choices that can be made. "Administrative Extension (90-day Extension)", "ACH Only" and "FRG migration"
Notice the first expression and the last expression are false but the rest are true.
These probably be nested and I am not sure how to make it work.
Thank you.