Hi,
I have 4 controls, 3 text and 1 combo:
txtNumber1, txtNumber2, cboCalcOption, txtSum.
cboCaclOption has two possible value: "calculated " and "stated".
txtSum in the control source has the following formula:
If the cboCalcOption is "stated" I need to allow user to input some number in txtSum control, else it would be calculated.
The problem is that with this function (or with control source properties) user is not allowed to enter anything in the text control.
So, instead of null in the function I should somehow put the "user input".
Thank you!
I have 4 controls, 3 text and 1 combo:
txtNumber1, txtNumber2, cboCalcOption, txtSum.
cboCaclOption has two possible value: "calculated " and "stated".
txtSum in the control source has the following formula:
Code:
IIF(cboCalcOption="calculated"; txtNumber1+txtNumber2; null)
The problem is that with this function (or with control source properties) user is not allowed to enter anything in the text control.
So, instead of null in the function I should somehow put the "user input".
Thank you!
Comment