IIf false, then allow text box to be free text??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
I have a working IIf statement, but didnt realise that if the result was
false, I wouldnt be allowed to type in my own text. This may make me seem
like an idiot, but how can i make the control available to type my own result
if the iif statement is false. if it is true, it gives an automatic result
which i want. so that works fine.

Help anyone?
Thank you

Rigby
 
Unfortunately, it's not possible using an IIf statement.

You'll have to put code in the form's Current event to populate the field if
the result is True, rather than putting the statement in the control's
Control Source.
 
Back
Top