Hello,
I have a text box on a form that I want to show when either or both of two conditions are true or selected in the UI. Visible is set to false.
Basically, when CustAcctHold is checked in the UI, I want to show the HOLD text box.
Also, if CustAcctTerms is set in the UI to HOLD, I want to show the HOLD text box.
I have tried = IsNull(Fields.CustAcctHold.Ticks, 0) with Operator = and Value 1 which I found on another thread, still did not work. Also tried, = IIf(IsNull(Fields.CustAcctHold, 0)= 0, 0,1)
I cannot figure out a string an expression that will make this work. Any help would be greatly appreciated!