I have a few controls on a form and each of these fields have a formula that evaluates the check box "Budgeted".
If it is checked checked true and the rest of the formula is true then show x controls or if its not true and if it is and the rest of the formula is true then dont show x controls.
<visible property control 1>= If(
chkBudgeted.Value = true && Value(txtTotalAmount.Text) > 9999,
true,
false
) || If(
chkBudgeted.Value = false && Value(txtTotalAmount.Text) >= 1500 && Value(txtTotalAmount.Text) <= 49999,
true,
false
) || If(
chkBudgeted.Value = false && Value(txtTotalAmount.Text) > 49999,
true,
false
)
I have fields that hold a Quantity value and one that holds a Dollar value and if the Total Amount value falls in between the values above then it should show certain fields based on the "Budgeted" checkbox value.
If I check the "Budgeted" check box and then uncheck it, the formula runs and then shows the fields. Ugh 😛